diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 07d2d6441dc1bd2842d3e7731acbbaa69bcb22ff..a9adff8d8ced656f1e2fb4853d9d4cc1c7b43f33 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -51,6 +51,7 @@ tests: - ssec_shared script: - ls -l +# - export PATH="$PATH:${PWD}" - pip install pytest pytest-cov - pytest --cov=. test.py coverage: '/TOTAL.*\s+(\d+%)$/' diff --git a/test.py b/test.py index 704353eb4b80ecf651d4a2e29009a59d45f1cea5..1fb7bc7f0cbcfd71e1a06d4aa3fbf6ccea605269 100644 --- a/test.py +++ b/test.py @@ -4,7 +4,7 @@ def test_hello_world_c(): import subprocess - bytes_out = subprocess.check_output(['./hello']) + bytes_out = subprocess.check_output(['hello']) assert bytes_out == b'Hello, World!\n'