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