diff options
author | 2022-04-18 17:06:46 +0100 | |
---|---|---|
committer | 2022-04-18 17:46:50 +0100 | |
commit | a4cd6bc18ec2298cc73567c1796238c4aa27b615 (patch) | |
tree | 98ead36fb0b7b8d9f281bb0d913b468d50c7c1f6 | |
parent | Move redis session reconnect to bot-core (diff) |
Hardcode 8 test threads in CI
This is needed due to the removal of psutil
-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 57cc544d9..cbdac63ab 100644 --- a/.github/workflows/lint-test.yml +++ b/.github/workflows/lint-test.yml @@ -125,7 +125,7 @@ jobs: [flake8] %(code)s: %(text)s'" - name: Run tests and generate coverage report - run: pytest -n auto --cov --disable-warnings -q + run: pytest -n 8 --cov --disable-warnings -q # Prepare the Pull Request Payload artifact. If this fails, we # we fail silently using the `continue-on-error` option. It's |