forked from near/nearcore
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
nayduck: support reading commented ./<path> include directives
When check_pytest.py and check_nightly.py read the test list files handle commented out include directives (i.e. `#./<path>` lines) so that the include can be commented out with a TODO and the check scripts will treat files listed in those files as being mentioned. Issue: near#4362 Issue: near#4552
- Loading branch information
Showing
4 changed files
with
31 additions
and
19 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,8 @@ | ||
# TODO(#4552): Those tests were identified as missing from any of the test list | ||
# files. It’s not entirely clear why so some investigation is necessary to | ||
# figure that out. The tests need to either be enabled or removed completely if | ||
# they are no longer needed/valid. | ||
# pytest adversarial/gc_rollback.py | ||
# pytest adversarial/gc_rollback.py --features nightly_protocol,nightly_protocol_features | ||
# pytest sanity/restart.py | ||
# pytest sanity/restart.py --features nightly_protocol,nightly_protocol_features | ||
# pytest sanity/rpc_finality.py | ||
# pytest sanity/rpc_finality.py --features nightly_protocol,nightly_protocol_features | ||
# pytest sanity/state_migration.py | ||
# pytest sanity/state_migration.py --features nightly_protocol,nightly_protocol_features | ||
# pytest stress/network_stress.py | ||
# pytest stress/network_stress.py --features nightly_protocol,nightly_protocol_features | ||
pytest adversarial/gc_rollback.py | ||
pytest adversarial/gc_rollback.py --features nightly_protocol,nightly_protocol_features | ||
pytest sanity/restart.py | ||
pytest sanity/restart.py --features nightly_protocol,nightly_protocol_features | ||
pytest sanity/rpc_finality.py | ||
pytest sanity/rpc_finality.py --features nightly_protocol,nightly_protocol_features | ||
pytest sanity/state_migration.py | ||
pytest sanity/state_migration.py --features nightly_protocol,nightly_protocol_features |
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
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