Pārlūkot izejas kodu

Update CI: tests were running entire standard library

Fix: bug where CI was running unittests of the entire Python standard library instead of only my test directory for my project
Anthony 2 mēneši atpakaļ
vecāks
revīzija
23f681895b
1 mainītis faili ar 3 papildinājumiem un 1 dzēšanām
  1. 3 1
      .github/workflows/ci.yml

+ 3 - 1
.github/workflows/ci.yml

@@ -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