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

Test against latest parity v1 #1064

Merged
merged 1 commit into from
Sep 19, 2018
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
18 changes: 9 additions & 9 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ jobs:
- image: circleci/python:3.5-jessie
environment:
TOXENV: py35-integration-parity-ipc
PARITY_VERSION: v1.11.7
PARITY_VERSION: v1.11.11
PARITY_OS: debian

py35-integration-parity-http:
Expand All @@ -195,7 +195,7 @@ jobs:
- image: circleci/python:3.5-jessie
environment:
TOXENV: py35-integration-parity-http
PARITY_VERSION: v1.11.7
PARITY_VERSION: v1.11.11
PARITY_OS: debian

py35-integration-parity-ws:
Expand All @@ -204,7 +204,7 @@ jobs:
- image: circleci/python:3.5-jessie
environment:
TOXENV: py35-integration-parity-ws
PARITY_VERSION: v1.11.7
PARITY_VERSION: v1.11.11
PARITY_OS: debian

py35-integration-ethtester-pyevm:
Expand Down Expand Up @@ -306,7 +306,7 @@ jobs:
- image: circleci/python:3.6-stretch
environment:
TOXENV: py36-integration-parity-ipc
PARITY_VERSION: v1.11.7
PARITY_VERSION: v1.11.11
PARITY_OS: debian

py36-integration-parity-http:
Expand All @@ -315,7 +315,7 @@ jobs:
- image: circleci/python:3.6-stretch
environment:
TOXENV: py36-integration-parity-http
PARITY_VERSION: v1.11.7
PARITY_VERSION: v1.11.11
PARITY_OS: debian

py36-integration-parity-ws:
Expand All @@ -324,7 +324,7 @@ jobs:
- image: circleci/python:3.6-stretch
environment:
TOXENV: py36-integration-parity-ws
PARITY_VERSION: v1.11.7
PARITY_VERSION: v1.11.11
PARITY_OS: debian

py36-integration-ethtester-pyevm:
Expand Down Expand Up @@ -412,7 +412,7 @@ jobs:
- image: circleci/python:3.7-stretch
environment:
TOXENV: py37-integration-parity-ipc
PARITY_VERSION: v1.11.7
PARITY_VERSION: v1.11.11
PARITY_OS: debian

py37-integration-parity-http:
Expand All @@ -421,7 +421,7 @@ jobs:
- image: circleci/python:3.7-stretch
environment:
TOXENV: py37-integration-parity-http
PARITY_VERSION: v1.11.7
PARITY_VERSION: v1.11.11
PARITY_OS: debian

py37-integration-parity-ws:
Expand All @@ -430,7 +430,7 @@ jobs:
- image: circleci/python:3.7-stretch
environment:
TOXENV: py37-integration-parity-ws
PARITY_VERSION: v1.11.7
PARITY_VERSION: v1.11.11
PARITY_OS: debian

py37-integration-ethtester-pyevm:
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/parity/install_parity.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"v1.8.8": "1_8_8",
"v1.9.1": "1_9_1",
"v1.10.4": "1_10_4",
"v1.11.7": "1_11_7",
"v1.11.11": "1_11_11",
}
ARCHITECTURE = 'x86_64'
OS = os.getenv('PARITY_OS', 'debian')
Expand Down