Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Run unit tests in CI #611

Merged
merged 8 commits into from
Oct 3, 2024
6 changes: 5 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,15 +87,19 @@ jobs:
- name: Install dependencies
run: |
set -x
pip install --upgrade pip tox codecov
python3 -m venv venv
. ./venv/bin/activate
hamistao marked this conversation as resolved.
Show resolved Hide resolved
./venv/bin/pip install --require-virtualenv --upgrade pip tox codecov

- name: Coverage
run: |
. ./venv/bin/activate
tox -e coverage
codecov

- name: Integration
run: |
. ./venv/bin/activate
integration/run-integration-tests

publish:
Expand Down