We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 76571b9 commit 9b2837fCopy full SHA for 9b2837f
.github/workflows/publish.yml
@@ -1,8 +1,9 @@
1
name: Build and Publish
2
3
-on: # TODO: should only trigger when intending to create a release (eg tag in commit)
4
- push:
5
- branches: [ dev/jan ] # for testing only currently
+on:
+ release:
+ types:
6
+ - created
7
8
jobs:
9
publish:
tests/test_gym_env_wrapper.py
@@ -1,4 +1,5 @@
import unittest
+import pytest
import sys
# insert at 1, 0 is the script path (or '' in REPL)
@@ -208,6 +209,7 @@ def test_discrete_irr_features(self):
208
209
print("total_reward:", total_reward)
210
aew.reset()
211
212
+ @pytest.mark.skip(reason="Cannot run mojoco in CI/CD currently.")
213
def test_cont_irr_features(self):
214
'''
215
0 commit comments