Skip to content
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

Add Python 3.8 in Rally tests #815

Merged
merged 4 commits into from
Nov 15, 2019
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
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,9 @@ it36: check-venv python-caches-clean tox-env-clean
it37: check-venv python-caches-clean tox-env-clean
. $(VENV_ACTIVATE_FILE); tox -e py37

it38: check-venv python-caches-clean tox-env-clean
. $(VENV_ACTIVATE_FILE); tox -e py38

benchmark: check-venv
$(VEPYTHON) setup.py pytest --addopts="-s benchmarks"

Expand All @@ -122,4 +125,4 @@ release-checks: check-venv
release: check-venv release-checks clean docs it
. $(VENV_ACTIVATE_FILE); ./release.sh $(release_version) $(next_version)

.PHONY: install clean nondocs-clean docs-clean python-caches-clean tox-env-clean docs test it it34 it35 it36 benchmark coverage release release-checks prereq venv-create check-env
.PHONY: install clean nondocs-clean docs-clean python-caches-clean tox-env-clean docs test it it35 it36 it37 it38 benchmark coverage release release-checks prereq venv-create check-env
1 change: 1 addition & 0 deletions make-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
PY35=3.5.6
PY36=3.6.7
PY37=3.7.1
PY38=3.8.0
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,5 +133,6 @@ def str_from_file(name):
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
zip_safe=False)
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
###############################################################################
[tox]
envlist =
docs, py35, py36, py37
docs, py35, py36, py37, py38
platform =
linux|darwin

Expand Down