diff options
author | 2024-04-01 15:14:06 +0100 | |
---|---|---|
committer | 2024-04-01 15:14:06 +0100 | |
commit | 326e0668e8f69513e1e82f8d9e2c9f286645c9ba (patch) | |
tree | 47ed80885db6b21c10314dd85ffc98d34d4227ae | |
parent | Merge pull request #2993 from python-discord/fix-test-warning (diff) | |
parent | Show warnings when running tests in GH Actions (diff) |
Merge pull request #2995 from python-discord/wookie184-show-warnings-in-actions-tests
Show warnings when running tests in GH Actions
-rw-r--r-- | .github/workflows/lint-test.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/lint-test.yml b/.github/workflows/lint-test.yml index 58939fc8d..6841d911a 100644 --- a/.github/workflows/lint-test.yml +++ b/.github/workflows/lint-test.yml @@ -53,7 +53,7 @@ jobs: run: "ruff check --output-format=github ." - name: Run tests and generate coverage report - run: pytest -n auto --cov --disable-warnings -q + run: pytest -n auto --cov -q # Prepare the Pull Request Payload artifact. If this fails, we # we fail silently using the `continue-on-error` option. It's |