You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(consume): add support for ethereum/{tests,legacytests} tarball urls (ethereum#1306)
* feat(consume): add support for ethereum/{tests,legacytests} tarball urls
* docs: update changelog
* fix(consume): don't extract to hard-coded fixtures directory
Detect single directory within archive instead of a hard-coded "fixtures" directory.
* fix(consume): fix tag matching when fetching releases
* docs: add advisory to changelog about cache dir changes
* fix(consume): revert incorrect "fix" from 39b0f54
Copy file name to clipboardExpand all lines: docs/CHANGELOG.md
+16-1Lines changed: 16 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,16 +2,31 @@
2
2
3
3
Test fixtures for use by clients are available for each release on the [Github releases page](https://github.com/ethereum/execution-spec-tests/releases).
**Note**: Although not a breaking change, `consume` users should delete the cache directory (typically located at `~/.cache/ethereum-execution-spec-tests`) used to store downloaded fixture release tarballs. This release adds support for [ethereum/tests](https://github.com/ethereum/tests) and [ethereum/legacytests](https://github.com/ethereum/legacytests) fixture release downloads and the structure of the cache directory has been updated to accommodate this change.
10
+
11
+
To try this feature:
12
+
13
+
```shell
14
+
consume direct --input=https://github.com/ethereum/tests/releases/download/v17.0/fixtures_blockchain_tests.tgz
15
+
```
16
+
17
+
To determine the cache directory location, see the `--cache-folder` entry from the command:
18
+
19
+
```shell
20
+
consume cache --help
21
+
```
22
+
9
23
### 💥 Breaking Change
10
24
11
25
### 🛠️ Framework
12
26
13
27
#### `consume`
14
28
29
+
- ✨ Add support for [ethereum/tests](https://github.com/ethereum/tests) and [ethereum/legacytests](https://github.com/ethereum/legacytests) release tarball download via URL to the `--input` flag of `consume` commands ([#1306](https://github.com/ethereum/execution-spec-tests/pull/1306)).
15
30
- ✨ Add support for Nethermind's `nethtest` command to `consume direct` ([#1250](https://github.com/ethereum/execution-spec-tests/pull/1250)).
16
31
- ✨ Allow filtering of test cases by fork via pytest marks (e.g., `-m "Cancun or Prague"`) ([#1304](https://github.com/ethereum/execution-spec-tests/pull/1304), [#1318](https://github.com/ethereum/execution-spec-tests/pull/1318)).
17
32
- ✨ Allow filtering of test cases by fixture format via pytest marks (e.g., `-m blockchain_test`) ([#1314](https://github.com/ethereum/execution-spec-tests/pull/1314)).
0 commit comments