Removing building when testing current build.
Some checks failed
continuous-integration/drone/push Build is failing
Some checks failed
continuous-integration/drone/push Build is failing
This commit is contained in:
parent
cd6f258720
commit
07e556da56
1 changed files with 3 additions and 2 deletions
3
run.py
3
run.py
|
@ -16,7 +16,7 @@
|
||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
"""
|
"""
|
||||||
from os import system, getcwd, path
|
from os import system, getcwd, path
|
||||||
from sys import path as sys_path
|
from sys import path as sys_path, argv
|
||||||
|
|
||||||
def build():
|
def build():
|
||||||
"""
|
"""
|
||||||
|
@ -29,6 +29,7 @@ def run():
|
||||||
logarithmplotter.run()
|
logarithmplotter.run()
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
|
if '--test-build' not in argv:
|
||||||
build()
|
build()
|
||||||
logplotter_path = path.realpath(path.join(getcwd(), "build", "runtime-pyside6"))
|
logplotter_path = path.realpath(path.join(getcwd(), "build", "runtime-pyside6"))
|
||||||
print("Appending " + logplotter_path + " to path...")
|
print("Appending " + logplotter_path + " to path...")
|
||||||
|
|
Loading…
Reference in a new issue