Skip to content

Fix missing import

Fix missing import #72

Workflow file for this run

name: tests-coverage
on: pull_request
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: 3.11
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install hatch
- name: Store EE token
run: |
python ./.github/scripts/make_ee_token.py
env:
EE_TOKEN: ${{ secrets.EE_TOKEN }}
- name: Test with pytest
run: |
hatch run test:coverage --cov-report=xml
- name: Upload to Codecov
run: |
bash <(curl -s https://codecov.io/bash)
- uses: actions/upload-artifact@v2
with:
path: coverage.xml