Skip to content

activate async tests again #58

activate async tests again

activate async tests again #58

Workflow file for this run

name: CI
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
push:
branches: [ develop ]
pull_request:
branches: [ develop, master ]
jobs:
setup_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Run setup of pyIndego
run: pip install -e ".[testing]"
- name: Test with pytest
run: pytest