Просмотр исходного кода

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 8 месяцев назад
Родитель
Сommit
23f681895b
1 измененных файлов с 3 добавлено и 1 удалено
  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