Skip to content

Updated min python version to 3.7 poetry and CI scripts #124

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 13 commits into from
Oct 13, 2022
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/install-poetry-action@v1.3
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