Add unit tests for DockerContainer

This commit is contained in:
Joe Rickerby
2020-06-26 21:37:02 +01:00
parent 762dc807cd
commit c956f118f6
3 changed files with 107 additions and 1 deletions
+1 -1
View File
@@ -10,7 +10,7 @@ if __name__ == '__main__':
os.chdir(Path(__file__).resolve().parents[1])
# run the unit tests
subprocess.check_call([sys.executable, '-m', 'pytest', 'unit_test'])
subprocess.check_call([sys.executable, '-m', 'pytest', 'unit_test', '--runslow'])
# run the integration tests
subprocess.check_call([sys.executable, '-m', 'pytest', '-x', '--durations', '0', 'test'])