Skip to content

CI: rename EIP15{0,8} tox jobs to their long-form fork names. #1699

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 1 commit into from
Jan 7, 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
24 changes: 12 additions & 12 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,18 +84,18 @@ jobs:
- image: circleci/python:3.5
environment:
TOXENV: py35-native-blockchain-homestead
py35-native-blockchain-eip150:
py35-native-blockchain-tangerine_whistle:
<<: *common
docker:
- image: circleci/python:3.5
environment:
TOXENV: py35-native-blockchain-eip150
py35-native-blockchain-eip158:
TOXENV: py35-native-blockchain-tangerine_whistle
py35-native-blockchain-spurious_dragon:
<<: *common
docker:
- image: circleci/python:3.5
environment:
TOXENV: py35-native-blockchain-eip158
TOXENV: py35-native-blockchain-spurious_dragon
py35-native-blockchain-transition:
<<: *common
docker:
Expand Down Expand Up @@ -157,18 +157,18 @@ jobs:
- image: circleci/python:3.6
environment:
TOXENV: py36-native-blockchain-homestead
py36-native-blockchain-eip150:
py36-native-blockchain-tangerine_whistle:
<<: *common
docker:
- image: circleci/python:3.6
environment:
TOXENV: py36-native-blockchain-eip150
py36-native-blockchain-eip158:
TOXENV: py36-native-blockchain-tangerine_whistle
py36-native-blockchain-spurious_dragon:
<<: *common
docker:
- image: circleci/python:3.6
environment:
TOXENV: py36-native-blockchain-eip158
TOXENV: py36-native-blockchain-spurious_dragon
py36-native-blockchain-transition:
<<: *common
docker:
Expand Down Expand Up @@ -232,8 +232,8 @@ workflows:
- py36-native-blockchain-constantinople
- py36-native-blockchain-frontier
- py36-native-blockchain-homestead
- py36-native-blockchain-eip150
- py36-native-blockchain-eip158
- py36-native-blockchain-tangerine_whistle
- py36-native-blockchain-spurious_dragon
- py36-native-blockchain-transition
- py36-vm
- py36-benchmark
Expand All @@ -246,8 +246,8 @@ workflows:
- py35-native-blockchain-constantinople
- py35-native-blockchain-frontier
- py35-native-blockchain-homestead
- py35-native-blockchain-eip150
- py35-native-blockchain-eip158
- py35-native-blockchain-tangerine_whistle
- py35-native-blockchain-spurious_dragon
- py35-native-blockchain-transition
- py35-vm
- py35-core
Expand Down
6 changes: 3 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
envlist=
py{35,36}-{core,database,transactions,vm}
py{36}-{benchmark,beacon}
py{35,36}-native-blockchain-{frontier,homestead,eip150,eip158,byzantium,constantinople,metropolis,transition}
py{35,36}-native-blockchain-{frontier,homestead,tangerine_whistle,spurious_dragon,byzantium,constantinople,metropolis,transition}
py37-{core,beacon}
py{35,36}-lint
py36-docs
Expand All @@ -25,8 +25,8 @@ commands=
vm: pytest {posargs:tests/json-fixtures/test_virtual_machine.py}
native-blockchain-frontier: pytest {posargs:tests/json-fixtures/test_blockchain.py --fork Frontier}
native-blockchain-homestead: pytest {posargs:tests/json-fixtures/test_blockchain.py --fork Homestead}
native-blockchain-eip150: pytest {posargs:tests/json-fixtures/test_blockchain.py --fork EIP150}
native-blockchain-eip158: pytest {posargs:tests/json-fixtures/test_blockchain.py --fork EIP158}
native-blockchain-tangerine_whistle: pytest {posargs:tests/json-fixtures/test_blockchain.py --fork EIP150}
native-blockchain-spurious_dragon: pytest {posargs:tests/json-fixtures/test_blockchain.py --fork EIP158}
native-blockchain-byzantium: pytest {posargs:tests/json-fixtures/test_blockchain.py --fork Byzantium}
native-blockchain-constantinople: pytest {posargs:tests/json-fixtures/test_blockchain.py --fork Constantinople}
native-blockchain-metropolis: pytest {posargs:tests/json-fixtures/test_blockchain.py --fork Metropolis}
Expand Down