diff options
author | Elena ``of Valhalla'' Grandi <valhalla@trueelena.org> | 2022-03-11 18:56:01 +0100 |
---|---|---|
committer | Elena ``of Valhalla'' Grandi <valhalla@trueelena.org> | 2022-03-11 18:56:08 +0100 |
commit | 673615267436f4dc23ed0fad2fdfef7765908d27 (patch) | |
tree | be76542362e514b2e53f4a189d398342d69d79e4 /.builds | |
parent | 5b4aa1dd8fe6d52392c127be8ca53d54796255bc (diff) |
Use one script instead of three for tests etc.
Diffstat (limited to '.builds')
-rw-r--r-- | .builds/archlinux.yml | 6 | ||||
-rw-r--r-- | .builds/debian_oldstable.yml | 6 | ||||
-rw-r--r-- | .builds/debian_stable.yml | 6 |
3 files changed, 12 insertions, 6 deletions
diff --git a/.builds/archlinux.yml b/.builds/archlinux.yml index 58bbb69..b61d55a 100644 --- a/.builds/archlinux.yml +++ b/.builds/archlinux.yml @@ -8,15 +8,17 @@ packages: - python-nose - python-coverage - flake8 + - isort + - doc8 sources: - https://git.sr.ht/~valhalla/lesana tasks: - test: | cd lesana - sh run_coverage + sh check coverage - qa: | cd lesana - sh run_qa + sh check qa triggers: - action: email condition: failure diff --git a/.builds/debian_oldstable.yml b/.builds/debian_oldstable.yml index b61284a..86158e3 100644 --- a/.builds/debian_oldstable.yml +++ b/.builds/debian_oldstable.yml @@ -8,15 +8,17 @@ packages: - python3-nose - python3-coverage - flake8 + - isort + - doc8 sources: - https://git.sr.ht/~valhalla/lesana tasks: - test: | cd lesana - sh run_coverage + sh check coverage - qa: | cd lesana - sh run_qa + sh check qa triggers: - action: email condition: failure diff --git a/.builds/debian_stable.yml b/.builds/debian_stable.yml index c4fdc37..7ef54ea 100644 --- a/.builds/debian_stable.yml +++ b/.builds/debian_stable.yml @@ -8,15 +8,17 @@ packages: - python3-nose - python3-coverage - flake8 + - doc8 + - isort sources: - https://git.sr.ht/~valhalla/lesana tasks: - test: | cd lesana - sh run_coverage + sh check coverage - qa: | cd lesana - sh run_qa + sh check qa triggers: - action: email condition: failure |