Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions .github/workflows/tox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
pytest:
strategy:
matrix:
python-version: [ 3.6, 3.7, 3.8, 3.9 ]
python-version: [ '3.7', '3.8', '3.9', '3.10' ]
os: [ ubuntu-latest ]
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
Expand All @@ -28,11 +28,12 @@ jobs:
- uses: docker-practice/actions-setup-docker@master

- name: Install Poetry
uses: dschep/[email protected]
run: |
curl -sSL https://install.python-poetry.org | python3 -

- name: Install Tox
run: |
pip3 install black coverage flake8 tox tox-docker tox-poetry
pip3 install -r ./utils/test-requirements.txt

- name: Run tox
run: |
Expand Down
3 changes: 2 additions & 1 deletion Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -355,6 +355,7 @@ poetry run flake8
A test suite is provided, and can be run with:

```sh
$ pip3 install -r ./utils/test-requirements.txt
$ tox
```

Expand All @@ -365,4 +366,4 @@ $ tox -- utils/tests/test_runner.py

## License

redisbench-admin is distributed under the BSD3 license - see [LICENSE](LICENSE)
redis-benchmarks-specification is distributed under the BSD3 license - see [LICENSE](LICENSE)
Loading