Skip to content

Commit

Permalink
Enable running test with non packaging CI configs
Browse files Browse the repository at this point in the history
Change-Id: I269956d5daf5807098a8c9b547ab8631956fa921
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io>
Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
  • Loading branch information
faltsi committed Apr 29, 2021
1 parent 48524ca commit 88fff87
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions coin_test_instructions.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,13 +111,12 @@ def run_test_instructions():
os.chdir(CI_ENV_AGENT_DIR)
testRun = 0

if CI_RELEASE_CONF:
# In win machines, there are additional python versions to test with
if CI_HOST_OS == "Windows":
call_testrunner("3.6.1", str(testRun))
call_testrunner("3.8.1", str(testRun))
else:
call_testrunner("3", str(testRun))
# In win machines, there are additional python versions to test with
if CI_HOST_OS == "Windows":
call_testrunner("3.6.1", str(testRun))
call_testrunner("3.8.1", str(testRun))
else:
call_testrunner("3", str(testRun))

if __name__ == "__main__":
run_test_instructions()

0 comments on commit 88fff87

Please sign in to comment.