forked from AI-Hypercomputer/maxtext
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpytest.ini
More file actions
22 lines (22 loc) · 862 Bytes
/
pytest.ini
File metadata and controls
22 lines (22 loc) · 862 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# pytest.ini
[pytest]
testpaths =
tests
python_files = *_test.py *_tests.py
addopts =
-rf --import-mode=importlib --strict-markers
--ignore=tests/profiler_test.py
--ignore=tests/train_smoke_test.py
--ignore=tests/train_int8_smoke_test.py
--ignore=tests/train_gpu_smoke_test.py
--ignore=tests/train_using_ragged_dot_smoke_test.py
--ignore=tests/grpo_trainer_correctness_test.py
--ignore=tests/offline_engine_test.py
markers =
tpu_only: marks tests to be run on TPUs only
gpu_only: marks tests to be run on GPUs only
cpu_only: marks tests to be run on CPUs only
scheduled_only: marks tests to run only on scheduled CI runs
integration_test: tests exercising larger portions of the system,
including interactions with other systems like GCS,
e.g., end_to_end tests