Skip to content

Refactor some get_assembly and get_study_runs to retry with different portals #86

Refactor some get_assembly and get_study_runs to retry with different portals

Refactor some get_assembly and get_study_runs to retry with different portals #86

Workflow file for this run

name: Testing
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8, 3.9, '3.10']
steps:
- uses: actions/checkout@v2
- name: 🐍 - Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: 🔧 - Install
run: |
pip install -r requirements-test.txt
pip install -U .
- name: 🧪 - Testing
run: |
pytest --reruns 2 --reruns-delay 1 -s -vv
- name: Codecov
uses: codecov/codecov-action@v2
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage.xml
fail_ci_if_error: false