mirror of
https://github.com/cedricbonhomme/Stegano.git
synced 2025-05-20 12:28:31 +02:00
18 lines
388 B
YAML
18 lines
388 B
YAML
image: debian/sid
|
|
sources:
|
|
- https://git.sr.ht/~cedric/Stegano
|
|
packages:
|
|
- python3
|
|
- python3-dev
|
|
- python3-pip
|
|
tasks:
|
|
- build: |
|
|
pip3 install pipenv
|
|
PATH=$PATH:/home/build/.local/bin
|
|
pipenv install
|
|
pipenv install --dev
|
|
- test: |
|
|
pipenv shell
|
|
nosetests --with-coverage --cover-package=stegano
|
|
- typecheck: |
|
|
python tools/run_mypy.py
|