diff --git a/.github/workflows/python-test.yml b/.github/workflows/python-test.yml index 7a7fd2f..ac5f2eb 100644 --- a/.github/workflows/python-test.yml +++ b/.github/workflows/python-test.yml @@ -14,7 +14,7 @@ jobs: strategy: matrix: - python-version: [3.9, 3.11] # You can add or remove Python versions to test against + python-version: 3.11 # [3.9, 3.11] # You can add or remove Python versions to test against steps: - name: Checkout repository @@ -32,4 +32,4 @@ jobs: - name: Run tests with pytest run: | - python -m pytest --vvrP \ No newline at end of file + python -m pytest \ No newline at end of file diff --git a/pytest.ini b/pytest.ini index eb795a4..97d7bde 100644 --- a/pytest.ini +++ b/pytest.ini @@ -1,2 +1,3 @@ [pytest] -pythonpath = src/pipeline \ No newline at end of file +pythonpath = src/pipeline +addopts = -vv -rP \ No newline at end of file