File tree 2 files changed +10
-3
lines changed
.github/unittest/linux_libs/scripts_d4rl 2 files changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -35,8 +35,13 @@ lib_dir="${env_dir}/lib"
35
35
conda deactivate && conda activate ./env
36
36
37
37
# this workflow only tests the libs
38
- python -c " import gym, d4rl "
38
+ printf " * Smoke test\n "
39
39
40
+ python -c " " " import gym
41
+ import d4rl
42
+ " " "
43
+
44
+ printf " * Tests"
40
45
python .github/unittest/helpers/coverage_run_parallel.py -m pytest test/test_libs.py --instafail -v --durations 200 --capture no -k TestD4RL --error-for-skips --runslow
41
46
coverage combine
42
47
coverage xml -i
Original file line number Diff line number Diff line change @@ -40,11 +40,13 @@ if [ ! -d "${env_dir}" ]; then
40
40
fi
41
41
conda activate " ${env_dir} "
42
42
43
+ python3 -m pip install pip --upgrade
44
+
43
45
# pip3 uninstall cython -y
44
46
# pip uninstall cython -y
45
47
# conda uninstall cython -y
46
- pip3 install " cython<3"
47
- conda install -c anaconda cython=" <3.0.0" -y
48
+ python3 -m pip install " cython<3" --upgrade
49
+ # conda install -c anaconda cython="<3.0.0" -y
48
50
49
51
50
52
# 3. Install mujoco
You can’t perform that action at this time.
0 commit comments