Skip to content

Commit 0171512

Browse files
committed
drop the dot: py.test -> pytest
1 parent 335c3de commit 0171512

File tree

1 file changed

+22
-22
lines changed

1 file changed

+22
-22
lines changed

tox.ini

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -19,27 +19,27 @@ passenv =
1919
PYTEST_ADDOPTS
2020
TRAVIS_EVENT_TYPE
2121
commands=
22-
core: py.test {posargs:tests/core/}
23-
trinity: py.test {posargs:tests/trinity/core/}
24-
p2p: py.test {posargs:tests/p2p}
25-
database: py.test {posargs:tests/database}
26-
rpc-blockchain: py.test {posargs:tests/trinity/json-fixtures-over-rpc/test_rpc_fixtures.py -k 'not GeneralStateTests'}
27-
rpc-state-frontier: py.test {posargs:tests/trinity/json-fixtures-over-rpc/test_rpc_fixtures.py -k 'GeneralStateTests and not stQuadraticComplexityTest and Frontier'}
28-
rpc-state-homestead: py.test {posargs:tests/trinity/json-fixtures-over-rpc/test_rpc_fixtures.py -k 'GeneralStateTests and not stQuadraticComplexityTest and Homestead'}
29-
rpc-state-eip150: py.test {posargs:tests/trinity/json-fixtures-over-rpc/test_rpc_fixtures.py -k 'GeneralStateTests and not stQuadraticComplexityTest and EIP150'}
30-
rpc-state-eip158: py.test {posargs:tests/trinity/json-fixtures-over-rpc/test_rpc_fixtures.py -k 'GeneralStateTests and not stQuadraticComplexityTest and EIP158'}
31-
rpc-state-byzantium: py.test {posargs:tests/trinity/json-fixtures-over-rpc/test_rpc_fixtures.py -k 'GeneralStateTests and not stQuadraticComplexityTest and Byzantium'}
32-
rpc-state-quadratic: py.test {posargs:tests/trinity/json-fixtures-over-rpc/test_rpc_fixtures.py -k 'GeneralStateTests and stQuadraticComplexityTest'}
33-
transactions: py.test {posargs:tests/json-fixtures/test_transactions.py}
34-
vm: py.test {posargs:tests/json-fixtures/test_virtual_machine.py}
35-
native-blockchain: py.test {posargs:tests/json-fixtures/test_blockchain.py}
36-
native-state-frontier: py.test {posargs:tests/json-fixtures/test_state.py -k Frontier}
37-
native-state-homestead: py.test {posargs:tests/json-fixtures/test_state.py -k Homestead}
38-
native-state-eip150: py.test {posargs:tests/json-fixtures/test_state.py -k EIP150}
39-
native-state-eip158: py.test {posargs:tests/json-fixtures/test_state.py -k EIP158}
40-
native-state-byzantium: py.test {posargs:tests/json-fixtures/test_state.py -k Byzantium}
41-
native-state-constantinople: py.test {posargs:tests/json-fixtures/test_state.py -k Constantinople}
42-
native-state-metropolis: py.test {posargs:tests/json-fixtures/test_state.py -k Metropolis}
22+
core: pytest {posargs:tests/core/}
23+
trinity: pytest {posargs:tests/trinity/core/}
24+
p2p: pytest {posargs:tests/p2p}
25+
database: pytest {posargs:tests/database}
26+
rpc-blockchain: pytest {posargs:tests/trinity/json-fixtures-over-rpc/test_rpc_fixtures.py -k 'not GeneralStateTests'}
27+
rpc-state-frontier: pytest {posargs:tests/trinity/json-fixtures-over-rpc/test_rpc_fixtures.py -k 'GeneralStateTests and not stQuadraticComplexityTest and Frontier'}
28+
rpc-state-homestead: pytest {posargs:tests/trinity/json-fixtures-over-rpc/test_rpc_fixtures.py -k 'GeneralStateTests and not stQuadraticComplexityTest and Homestead'}
29+
rpc-state-eip150: pytest {posargs:tests/trinity/json-fixtures-over-rpc/test_rpc_fixtures.py -k 'GeneralStateTests and not stQuadraticComplexityTest and EIP150'}
30+
rpc-state-eip158: pytest {posargs:tests/trinity/json-fixtures-over-rpc/test_rpc_fixtures.py -k 'GeneralStateTests and not stQuadraticComplexityTest and EIP158'}
31+
rpc-state-byzantium: pytest {posargs:tests/trinity/json-fixtures-over-rpc/test_rpc_fixtures.py -k 'GeneralStateTests and not stQuadraticComplexityTest and Byzantium'}
32+
rpc-state-quadratic: pytest {posargs:tests/trinity/json-fixtures-over-rpc/test_rpc_fixtures.py -k 'GeneralStateTests and stQuadraticComplexityTest'}
33+
transactions: pytest {posargs:tests/json-fixtures/test_transactions.py}
34+
vm: pytest {posargs:tests/json-fixtures/test_virtual_machine.py}
35+
native-blockchain: pytest {posargs:tests/json-fixtures/test_blockchain.py}
36+
native-state-frontier: pytest {posargs:tests/json-fixtures/test_state.py -k Frontier}
37+
native-state-homestead: pytest {posargs:tests/json-fixtures/test_state.py -k Homestead}
38+
native-state-eip150: pytest {posargs:tests/json-fixtures/test_state.py -k EIP150}
39+
native-state-eip158: pytest {posargs:tests/json-fixtures/test_state.py -k EIP158}
40+
native-state-byzantium: pytest {posargs:tests/json-fixtures/test_state.py -k Byzantium}
41+
native-state-constantinople: pytest {posargs:tests/json-fixtures/test_state.py -k Constantinople}
42+
native-state-metropolis: pytest {posargs:tests/json-fixtures/test_state.py -k Metropolis}
4343

4444
deps = .[eth-extras, test]
4545

@@ -68,7 +68,7 @@ passenv =
6868
commands=
6969
# We don't want to run these tests concurrently to avoid running into errors
7070
# due to multiple Trinity instances competing for the same ports
71-
py.test -n 1 {posargs:tests/trinity/integration/}
71+
pytest -n 1 {posargs:tests/trinity/integration/}
7272

7373
[testenv:py36-trinity-integration]
7474
deps = {[common-trinity-integration]deps}

0 commit comments

Comments
 (0)