-
Notifications
You must be signed in to change notification settings - Fork 14
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
146f53e
commit 3fc2241
Showing
3 changed files
with
15 additions
and
0 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,5 +1,6 @@ | ||
coverage[toml]==7.2.5 | ||
pytest==7.3.1 | ||
pytest_tagging==1.5.3 | ||
PyYAML==6.0.1 | ||
tenacity==8.2.3 | ||
pylint==3.2.5 | ||
|
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# | ||
# Copyright 2024 Canonical, Ltd. | ||
# | ||
from pytest_tagging import combine_tags | ||
|
||
PULL_REQUEST = "pull_request" | ||
NIGHTLY = "nightly" | ||
WEEKLY = "weekly" | ||
|
||
# Those tags can be used for a convenient way to run multiple test levels. | ||
combine_tags("up_to_nightly", PULL_REQUEST, NIGHTLY) | ||
combine_tags("up_to_weekly", PULL_REQUEST, NIGHTLY, WEEKLY) |