Skip to content

Commit f2992b7

Browse files
authored
Merge pull request #48 from qbzzt/patch-1
feat(README.md): Remove prompts from commands
2 parents 21e4b4f + fc55350 commit f2992b7

File tree

1 file changed

+12
-10
lines changed

1 file changed

+12
-10
lines changed

README.md

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,17 @@ The following are required to either generate or develop tests:
1818
To generate tests from the test "fillers", it's necessary to install the Python packages provided by `execution-spec-tests` (it's recommended to use a virtual environment for the installation):
1919

2020
```console
21-
$ git clone https://github.com/ethereum/execution-spec-tests
22-
$ cd execution-spec-tests
23-
$ python -m venv ./venv/
24-
$ source ./venv/bin/activate
25-
$ pip install -e .
21+
git clone https://github.com/ethereum/execution-spec-tests
22+
cd execution-spec-tests
23+
python -m venv ./venv/
24+
source ./venv/bin/activate
25+
pip install -e .
2626
```
2727

2828
To generate all the tests defined in the `./fillers` sub-directory, run the `tf` command:
29+
2930
```console
30-
$ tf --output="fixtures"
31+
tf --output="fixtures"
3132
```
3233

3334
Note that the test `post` conditions are tested against the output of the `geth` `evm` utility during test generation.
@@ -50,11 +51,12 @@ tf --output="fixtures" --test-case dup
5051
### Testing the Execution Spec Tests Framework
5152

5253
The Python packages provided by the execution spec tests framework have their own test suite that can be ran via `tox`:
54+
5355
```console
54-
$ python -m venv ./venv/
55-
$ source ./venv/bin/activate
56-
$ pip install tox
57-
$ tox -e py3
56+
python -m venv ./venv/
57+
source ./venv/bin/activate
58+
pip install tox
59+
tox -e py3
5860
```
5961

6062
## Execution Spec Tests Package Overview

0 commit comments

Comments
 (0)