Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Test pySEQ
name: Test pySEQTarget

on:
push:
Expand Down Expand Up @@ -32,7 +32,7 @@ jobs:
pip install flake8 pytest pytest-cov
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi

- name: Install pySEQ package
- name: Install pySEQTarget package
run: |
pip install -e .

Expand All @@ -45,7 +45,7 @@ jobs:

- name: Test with pytest
run: |
pytest tests/ -v --cov=pySEQ --cov-report=term-missing
pytest tests/ -v --cov=pySEQTarget --cov-report=xml

- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v5
Expand Down