Skip to content

Commit

Permalink
fix test command
Browse files Browse the repository at this point in the history
  • Loading branch information
klahnakoski committed Jan 5, 2025
1 parent 3cad867 commit f9c3cf4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
env:
CI: true
run: |
python -m unittest discover tests -v
python -m unittest discover . -v
coverage:
if: github.ref == 'refs/heads/dev'
Expand Down Expand Up @@ -113,6 +113,6 @@ jobs:
pip install --no-deps -r tests/requirements.lock
pip install coverage coveralls
pip install .
coverage run --rcfile=packaging/coverage.ini -m unittest discover tests
coverage run --rcfile=packaging/coverage.ini -m unittest discover .
coverage report --rcfile=packaging/coverage.ini
coveralls
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
[![PyPI Latest Release](https://img.shields.io/pypi/v/mo-threads.svg)](https://pypi.org/project/mo-threads/)
[![Build Status](https://github.com/klahnakoski/mo-threads/actions/workflows/build.yml/badge.svg?branch=master)](https://github.com/klahnakoski/mo-threads/actions/workflows/build.yml)
[![Coverage Status](https://coveralls.io/repos/github/klahnakoski/mo-threads/badge.svg?branch=dev)](https://coveralls.io/github/klahnakoski/mo-threads?branch=dev)
[![Downloads](https://pepy.tech/badge/mo-threads/month)](https://pepy.tech/project/mo-threads)
[![Downloads](https://static.pepy.tech/badge/mo-threads/month)](https://pepy.tech/project/mo-threads)

## Module `threads`

Expand Down
2 changes: 1 addition & 1 deletion tests/docker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ python310.dockerfile run -it mo-threads bash

Then run tests

.venv/bin/python -m unittest discover tests -v
.venv/bin/python -m unittest discover . -v

.venv/bin/python -m unittest tests.test_processes.TestProcesses.test_sigint_no_exit

0 comments on commit f9c3cf4

Please sign in to comment.