Contains a Python package called justatest
and a unit test for it.
To test with your own runner
- Duplicate this repo
- Change visibility to private
- Set up runner as described in https://github.com/ci-for-research/self-hosted-runners
- Make change to repo to trigger GitHub Action workflow to run.
poetry install
from justatest import sum
assert sum(2, 4) == 6
poetry run pytest tests