There was an error while loading. Please reload this page.
1 parent b2f91b9 commit e48c1deCopy full SHA for e48c1de
2 files changed
.github/workflows/build.yaml
@@ -56,7 +56,11 @@ jobs:
56
python-version: ${{ matrix.python-version }}
57
58
- name: Build & Test
59
- run: make ci
+ run: |
60
+ make ci
61
+ python -m unittest test.unit.redstone.test_auth
62
+ python -m unittest test.integration.test_resourcecontroller
63
+ python -m unittest test.integration.test_keyprotect
64
65
results:
66
if: ${{ always() }}
Makefile
@@ -20,7 +20,4 @@ ci: setup lint
20
21
lint:
22
./pylint.sh
23
- python -m unittest test.unit.redstone.test_auth
24
- python -m unittest test.integration.test_resourcecontroller
25
- python -m unittest test.integration.test_keyprotect
26
0 commit comments