-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1c56f31
commit 87e604b
Showing
2 changed files
with
21 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,21 @@ | ||
# End to end preconfirmation tests | ||
# End to end preconfirmation tests | ||
|
||
This is a collection of end to end tests for the preconfirmation service. | ||
|
||
It requires full stack to be up and running. Usually by running | ||
``` | ||
kurtosis run --enclave taiko-preconf-devnet . --args-file network_params.yaml | ||
``` | ||
from the main branch of https://github.com/NethermindEth/preconfirm-devnet-package. | ||
|
||
It also requires a `.env` file to be present in the root directory. You can copy `.env.example` file into `.env` and fill in the required values. | ||
|
||
To run all tests: | ||
``` | ||
pytest | ||
``` | ||
|
||
To run a specific test with output printed: | ||
``` | ||
pytest -s -v -k test_name | ||
``` |