diff --git a/.github/workflows/smoke-test.yml b/.github/workflows/smoke-test.yml index 16aef8b..3184b79 100644 --- a/.github/workflows/smoke-test.yml +++ b/.github/workflows/smoke-test.yml @@ -41,7 +41,7 @@ jobs: - name: Run unit tests with pytest / pytest-copie run: | git config --global init.defaultBranch main - python -m pytest --python_version ${{ matrix.python-version }} + python -m pytest tests --python_version ${{ matrix.python-version }} - name: Send status to Slack app if: ${{ failure() && github.event_name != 'workflow_dispatch' }} id: slack diff --git a/.github/workflows/testing-and-coverage.yml b/.github/workflows/testing-and-coverage.yml index a48821a..a3672d9 100644 --- a/.github/workflows/testing-and-coverage.yml +++ b/.github/workflows/testing-and-coverage.yml @@ -36,4 +36,4 @@ jobs: - name: Run unit tests with pytest / pytest-copie run: | git config --global init.defaultBranch main - python -m pytest --python_version ${{ matrix.python-version }} \ No newline at end of file + python -m pytest tests --python_version ${{ matrix.python-version }} \ No newline at end of file