forked from Farama-Foundation/PettingZoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrelease_test.sh
18 lines (16 loc) · 845 Bytes
/
release_test.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/bash
render=True
manual_control=True
performance=True
save_obs=True
num_cycles=1000
pytest pettingzoo/test/pytest_runner.py
bash ./check_style.sh
python3 -m pettingzoo.test.print_test
pytest ./pettingzoo/test/all_parameter_combs.py
python3 -m pettingzoo.test.ci_test atari $num_cycles $render $manual_control $performance $save_obs
python3 -m pettingzoo.test.ci_test classic $num_cycles $render $manual_control $performance $save_obs
python3 -m pettingzoo.test.ci_test butterfly $num_cycles $render $manual_control $performance $save_obs
python3 -m pettingzoo.test.ci_test mpe $num_cycles $render $manual_control $performance $save_obs
python3 -m pettingzoo.test.ci_test magent $num_cycles $render $manual_control $performance $save_obs
python3 -m pettingzoo.test.ci_test sisl $num_cycles $render $manual_control $performance $save_obs