-
Notifications
You must be signed in to change notification settings - Fork 542
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
Showing
1 changed file
with
27 additions
and
27 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,34 +1,34 @@ | ||
# Smoke tests for SkyPilot | ||
# Default options are set in pyproject.toml | ||
# Example usage: | ||
# Run all tests except for AWS and Lambda Cloud | ||
# > pytest tests/test_smoke.py | ||
# | ||
# Terminate failed clusters after test finishes | ||
# > pytest tests/test_smoke.py --terminate-on-failure | ||
# | ||
# Re-run last failed tests | ||
# > pytest --lf | ||
# | ||
# Run one of the smoke tests | ||
# > pytest tests/test_smoke.py::test_minimal | ||
# | ||
# Only run managed job tests | ||
# > pytest tests/test_smoke.py --managed-jobs | ||
# | ||
# Only run sky serve tests | ||
# > pytest tests/test_smoke.py --sky-serve | ||
# | ||
# Only run test for AWS + generic tests | ||
# > pytest tests/test_smoke.py --aws | ||
# | ||
# Change cloud for generic tests to aws | ||
# > pytest tests/test_smoke.py --generic-cloud aws | ||
# Smoke tests for SkyPilot | ||
# Default options are set in pyproject.toml | ||
# Example usage: | ||
# Run all tests except for AWS and Lambda Cloud | ||
# > pytest tests/test_smoke.py | ||
# | ||
# Terminate failed clusters after test finishes | ||
# > pytest tests/test_smoke.py --terminate-on-failure | ||
# | ||
# Re-run last failed tests | ||
# > pytest --lf | ||
# | ||
# Run one of the smoke tests | ||
# > pytest tests/test_smoke.py::test_minimal | ||
# | ||
# Only run managed job tests | ||
# > pytest tests/test_smoke.py --managed-jobs | ||
# | ||
# Only run sky serve tests | ||
# > pytest tests/test_smoke.py --sky-serve | ||
# | ||
# Only run test for AWS + generic tests | ||
# > pytest tests/test_smoke.py --aws | ||
# | ||
# Change cloud for generic tests to aws | ||
# > pytest tests/test_smoke.py --generic-cloud aws | ||
|
||
from smoke_tests.test_basic import * | ||
from smoke_tests.test_cluster_job import * | ||
from smoke_tests.test_images import * | ||
from smoke_tests.test_managed_job import * | ||
from smoke_tests.test_mount_and_storage import * | ||
from smoke_tests.test_region_and_zone import * | ||
from smoke_tests.test_sky_serve import * | ||
from smoke_tests.test_sky_serve import * |