Skip to content
This repository was archived by the owner on Jul 1, 2021. It is now read-only.

Commit 48aaab2

Browse files
committed
ci: rename EIP15{0,8} jobs to their long-form fork names.
Everywhere else in the codebase, EIP15{0,8} remain.
1 parent 2e8f681 commit 48aaab2

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

.circleci/config.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -128,18 +128,18 @@ jobs:
128128
- image: circleci/python:3.6
129129
environment:
130130
TOXENV: py36-rpc-state-homestead
131-
py36-rpc-state-eip150:
131+
py36-rpc-state-tangerine_whistle:
132132
<<: *common
133133
docker:
134134
- image: circleci/python:3.6
135135
environment:
136-
TOXENV: py36-rpc-state-eip150
137-
py36-rpc-state-eip158:
136+
TOXENV: py36-rpc-state-tangerine_whistle
137+
py36-rpc-state-spurious_dragon:
138138
<<: *common
139139
docker:
140140
- image: circleci/python:3.6
141141
environment:
142-
TOXENV: py36-rpc-state-eip158
142+
TOXENV: py36-rpc-state-spurious_dragon
143143
py36-rpc-blockchain:
144144
<<: *common
145145
docker:
@@ -211,8 +211,8 @@ workflows:
211211
- py36-rpc-state-constantinople
212212
- py36-rpc-state-frontier
213213
- py36-rpc-state-homestead
214-
- py36-rpc-state-eip150
215-
- py36-rpc-state-eip158
214+
- py36-rpc-state-tangerine_whistle
215+
- py36-rpc-state-spurious_dragon
216216
- py36-rpc-state-quadratic
217217
- py36-rpc-blockchain
218218

tox.ini

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tox]
22
envlist=
33
py{36,37}-{core,p2p,integration,lightchain_integration}
4-
py{36}-rpc-state-{frontier,homestead,eip150,eip158,byzantium,constantinople,quadratic}
4+
py{36}-rpc-state-{frontier,homestead,tangerine_whistle,spurious_dragon,byzantium,constantinople,quadratic}
55
py{36}-rpc-blockchain
66
py{36,37}-lint
77
py36-docs
@@ -22,8 +22,8 @@ commands=
2222
rpc-blockchain: pytest {posargs:tests/json-fixtures-over-rpc/test_rpc_fixtures.py -k 'not GeneralStateTests'}
2323
rpc-state-frontier: pytest {posargs:tests/json-fixtures-over-rpc/test_rpc_fixtures.py -k 'GeneralStateTests and not stQuadraticComplexityTest and Frontier'}
2424
rpc-state-homestead: pytest {posargs:tests/json-fixtures-over-rpc/test_rpc_fixtures.py -k 'GeneralStateTests and not stQuadraticComplexityTest and Homestead'}
25-
rpc-state-eip150: pytest {posargs:tests/json-fixtures-over-rpc/test_rpc_fixtures.py -k 'GeneralStateTests and not stQuadraticComplexityTest and EIP150'}
26-
rpc-state-eip158: pytest {posargs:tests/json-fixtures-over-rpc/test_rpc_fixtures.py -k 'GeneralStateTests and not stQuadraticComplexityTest and EIP158'}
25+
rpc-state-tangerine_whistle: pytest {posargs:tests/json-fixtures-over-rpc/test_rpc_fixtures.py -k 'GeneralStateTests and not stQuadraticComplexityTest and EIP150'}
26+
rpc-state-spurious_dragon: pytest {posargs:tests/json-fixtures-over-rpc/test_rpc_fixtures.py -k 'GeneralStateTests and not stQuadraticComplexityTest and EIP158'}
2727
# The following test seems to consume a lot of memory. Restricting to 3 processes reduces crashes
2828
rpc-state-byzantium: pytest -n3 {posargs:tests/json-fixtures-over-rpc/test_rpc_fixtures.py -k 'GeneralStateTests and not stQuadraticComplexityTest and Byzantium'}
2929
rpc-state-constantinople: pytest -n3 {posargs:tests/json-fixtures-over-rpc/test_rpc_fixtures.py -k 'GeneralStateTests and not stQuadraticComplexityTest and Constantinople'}

0 commit comments

Comments
 (0)