Skip to content

Update filelock requirement from <3.17,>=3.4 to >=3.4,<3.18 #569

Update filelock requirement from <3.17,>=3.4 to >=3.4,<3.18

Update filelock requirement from <3.17,>=3.4 to >=3.4,<3.18 #569

Workflow file for this run

name: Codecov Action
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
name: Test python API
steps:
- uses: actions/checkout@v1
- name: Install requirements
run: |
pip install -r requirements-tests.txt
pip install -r requirements-dev.txt
- name: Run tests and collect coverage
run: make coverage-tests
- name: Upload coverage reports to Codecov
run: |
# Replace `linux` below with the appropriate OS
# Options are `alpine`, `linux`, `macos`, `windows`
curl -Os https://uploader.codecov.io/latest/linux/codecov
chmod +x codecov
./codecov -t ${CODECOV_TOKEN}