diff options
| author | 2024-04-02 12:53:34 +0800 | |
|---|---|---|
| committer | 2024-04-02 12:53:34 +0800 | |
| commit | 2d9b3a220c02daec03b09e82980c82daffe0c3a1 (patch) | |
| tree | da3787c1e1f56561b6c02428eeba75fe589bd251 /.github | |
| parent | Reference the /tag slash-command instead in tags listing (diff) | |
| parent | Merge pull request #2995 from python-discord/wookie184-show-warnings-in-actio... (diff) | |
Merge branch 'main' into fix/tags-list-footer
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/lint-test.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/lint-test.yml b/.github/workflows/lint-test.yml index bec7d13ea..6841d911a 100644 --- a/.github/workflows/lint-test.yml +++ b/.github/workflows/lint-test.yml @@ -34,7 +34,7 @@ jobs: - name: Install Python Dependencies uses: HassanAbouelela/actions/setup-python@setup-python_v1.4.2 with: - python_version: '3.11' + python_version: '3.12' # Check all of our non-dev dependencies are compatible with the MIT license. # If you added a new dependencies that is being rejected, @@ -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 |