blob: 5938c3c25e2a57c02e833ee4380722febf538540 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
#!/bin/sh
[ x$1 = x ] && echo "\
Pieni ja kevyt skripti helppoa kehitystyökalujen ajoa varten.
Käyttö: $0 <komento>
Komennot:
pytest Aja yksikkötestit pytestillä
pylint Tarkista muotoilu pylintillä
covhtml Tee haarakattavuus raportti html muodossa
covxml Sama mutta xml muoto (codecov tarvitsee tämän)
covff Tee html haarakattavuusraportti ja avaa se firefoxissa
all Sama kuin '$0 covff && $0 pylint'
" && exit 0
[ $1 = pytest ] \
&& poetry run pytest -v \
&& exit 0
[ $1 = pylint ] \
&& poetry run python3 -m pylint src/miinaharava/ \
&& exit 0
[ $1 = covhtml ] \
&& poetry run python3 -m coverage run --branch -m pytest -v \
&& poetry run python3 -m coverage html \
&& exit 0
[ $1 = covxml ] \
&& poetry run python3 -m coverage run --branch -m pytest -v \
&& poetry run python3 -m coverage xml \
&& exit 0
[ $1 = covff ] \
&& poetry run python3 -m coverage run --branch -m pytest -v \
&& poetry run python3 -m coverage html \
&& firefox htmlcov/index.html \
[ $1 = all ] && poetry run python3 -m coverage run --branch -m pytest -v \
&& poetry run python3 -m coverage html \
&& firefox htmlcov/index.html \
&& poetry run python3 -m pylint src/miinaharava/
|