Skip to content

Commit

Permalink
add
Browse files Browse the repository at this point in the history
  • Loading branch information
Asthestarsfalll committed Feb 5, 2024
1 parent 27f5973 commit 3c444eb
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,24 @@ jobs:
with:
python-version: 3.7

- name: Install Poetry
uses: snok/install-poetry@v1
with:
virtualenvs-create: true
virtualenvs-in-project: true
installer-parallel: true

- name: Install ExCore
run: poetry install --no-interaction --with dev

- name: Run pytest
run: |
pip install poetry
poetry install --with dev
cd tests
pip install toml
python init.py
python -m pytest
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

0 comments on commit 3c444eb

Please sign in to comment.