diff --git a/.github/workflows/run_smoke_test.yml b/.github/workflows/run_smoke_test.yml index 39ec0c51..7ce74d2d 100644 --- a/.github/workflows/run_smoke_test.yml +++ b/.github/workflows/run_smoke_test.yml @@ -64,4 +64,4 @@ jobs: json: ${{ secrets.GWS_GITHUB_AUTOMATION_CREDS }} - name: Run ScubaGoggles and check for correct output - run: python -m pytest -s -vvv ./Testing/Functional/SmokeTests/ --subjectemail="${{ secrets.GWS_SUBJECT_EMAIL }}" --domain="${{ secrets.GWS_DOMAIN }}" + run: pytest -s -vvv ./Testing/Functional/SmokeTests/ --subjectemail="${{ secrets.GWS_SUBJECT_EMAIL }}" --domain="${{ secrets.GWS_DOMAIN }}" diff --git a/Testing/Functional/pytest.ini b/Testing/Functional/pytest.ini deleted file mode 100644 index bbd61f63..00000000 --- a/Testing/Functional/pytest.ini +++ /dev/null @@ -1,2 +0,0 @@ -[pytest] -python_classes = *Test \ No newline at end of file diff --git a/pytest.ini b/pytest.ini new file mode 100644 index 00000000..5947a673 --- /dev/null +++ b/pytest.ini @@ -0,0 +1,3 @@ +[pytest] +python_classes = *Test +pythonpath = . scubagoggles \ No newline at end of file