Browse Source

Update CI settings

Aleksandr Borzunov 4 years ago
parent
commit
bb10f4ea2a
1 changed files with 4 additions and 4 deletions
  1. 4 4
      .github/workflows/run-tests.yml

+ 4 - 4
.github/workflows/run-tests.yml

@@ -10,7 +10,7 @@ jobs:
     strategy:
       matrix:
         python-version: [ 3.7, 3.8, 3.9 ]
-    timeout-minutes: 15
+    timeout-minutes: 10
     steps:
       - uses: actions/checkout@v2
       - name: Set up Python
@@ -33,7 +33,7 @@ jobs:
       - name: Test
         run: |
           cd tests
-          LOGLEVEL=DEBUG pytest --durations=0 --durations-min=1.0 -vvv
+          pytest --durations=0 --durations-min=1.0 -v
 
   build_and_test_p2pd:
     runs-on: ubuntu-latest
@@ -65,7 +65,7 @@ jobs:
   codecov_in_develop_mode:
 
     runs-on: ubuntu-latest
-    timeout-minutes: 15
+    timeout-minutes: 10
     steps:
       - uses: actions/checkout@v2
       - name: Set up Python
@@ -87,6 +87,6 @@ jobs:
           pip install -e .
       - name: Test
         run: |
-          LOGLEVEL=DEBUG pytest --cov=hivemind tests -vvv
+          pytest --cov=hivemind tests -v
       - name: Upload coverage to Codecov
         uses: codecov/codecov-action@v1