File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change 1- .PHONY : test precommit common_tests slow_tests test_examples tests_gpu
1+ .PHONY : test precommit common_tests slow_tests test_examples tests_gpu test_experimental
22
33check_dirs := examples tests trl
44
@@ -28,3 +28,6 @@ test_examples:
2828 TRL_ACCELERATE_CONFIG=$${file} bash $(COMMAND_FILES_PATH)/run_dpo.sh; \
2929 echo $$?','$${file} >> temp_results_dpo_tests.txt; \
3030 done
31+
32+ test_experimental :
33+ pytest -k " experimental"
Original file line number Diff line number Diff line change @@ -28,3 +28,6 @@ markers = [
2828 " slow: marks tests as slow (deselect with '-m \" not slow\" ')" ,
2929 " low-priority: marks tests as low priority (deselect with '-m \" not low-priority\" ')"
3030]
31+ addopts = [
32+ " -k" , " not experimental" ,
33+ ]
You can’t perform that action at this time.
0 commit comments