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
5
run.py
5
run.py
|
@ -16,7 +16,7 @@
|
|||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
"""
|
||||
from os import system, getcwd, path
|
||||
from sys import path as sys_path
|
||||
from sys import path as sys_path, argv
|
||||
|
||||
def build():
|
||||
"""
|
||||
|
@ -29,7 +29,8 @@ def run():
|
|||
logarithmplotter.run()
|
||||
|
||||
if __name__ == "__main__":
|
||||
build()
|
||||
if '--test-build' not in argv:
|
||||
build()
|
||||
logplotter_path = path.realpath(path.join(getcwd(), "build", "runtime-pyside6"))
|
||||
print("Appending " + logplotter_path + " to path...")
|
||||
sys_path.append(logplotter_path)
|
||||
|
|
Loading…
Reference in a new issue