diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 4906b9ea6..2ba6c3765 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -27,19 +27,13 @@ jobs: pip install poetry poetry lock && poetry install - - name: Print Environment Information - run: | - python --version - pip list - env - - name: Clear Caches run: | sudo rm -rf ~/.cache/pypoetry sudo rm -rf ~/.cache/pip - name: Run tests - run: poetry run pytest tests --capture=tee-sys --junitxml=test-results.xml + run: poetry run pytest tests - name: Upload Test Results if: always()