Fix: bug where CI was running unittests of the entire Python standard library instead of only my test directory for my project
@@ -32,5 +32,7 @@ jobs:
cd ../../
- name: Run Tests
- run: python -m unittest discover -s test
+ run: |
+ cd simulator/
+ python -m unittest discover -s test