We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e03aae commit edfa50fCopy full SHA for edfa50f
.github/workflows/build.yml
@@ -27,7 +27,23 @@ jobs:
27
python-version: "3.12"
28
- name: Install scikit-decide and test dependencies
29
run: |
30
- pip install graph-jsp-env
+ pip install pytest
31
- name: test importing it
32
33
- python -c "from graph_jsp_env.disjunctive_graph_jsp_env import DisjunctiveGraphJspEnv"
+ pytest tests/
34
+ test-jsp-env-wrapped:
35
+ runs-on: windows-latest
36
+ defaults:
37
+ run:
38
+ shell: bash
39
+ steps:
40
+ - name: Set up Python
41
+ uses: actions/setup-python@v5
42
+ with:
43
+ python-version: "3.12"
44
+ - name: Install scikit-decide and test dependencies
45
+ run: |
46
47
+ - name: test importing it
48
49
+ sh -c 'pytest tests/ ; ret=$?; [ $ret = 5 ] && exit 0 || exit $ret'
tests/test_fake.py
0 commit comments