forked from run-house/runhouse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pytest.ini
14 lines (13 loc) Β· 977 Bytes
/
pytest.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
[pytest]
addopts =
-m 'not gputest and not logintest'
markers =
clustertest: marks tests which require a cluster (deselect with '-m "not clustertest"')
gputest: marks tests which require a GPU (deselect with '-m "not gputest"')
awstest: marks tests which require AWS credentials (deselect with '-m "not awstest"')
gcptest: marks tests which require GCP credentials (deselect with '-m "not gcptest"')
rnstest: marks test which make calls to the Runhouse API server (deselect with '-m "not rnstest"')
localtest: marks test which run fully local and do not make calls to Runhouse servers or call into remote infra (deselect with '-m "not localtest"')
tutorialtest: marks test which run selected Runhouse tutorials (deselect with '-m "not tutorialtest"')
logintest: marks test which run the login flow (deselect with '-m "not logintest"')
sagemakertest: marks test which run SageMaker cluster tests (deselect with '-m "not sagemakertest"')