From f37f9a2bd8e23ac313a5f06bc25a8dd3823a9800 Mon Sep 17 00:00:00 2001 From: Elena ``of Valhalla'' Grandi Date: Wed, 13 Apr 2022 09:19:54 +0200 Subject: Run tests on sourcehut --- .builds/archlinux.yml | 20 ++++++++++++++++++++ .builds/debian_oldstable.yml | 21 +++++++++++++++++++++ .builds/debian_stable.yml | 20 ++++++++++++++++++++ 3 files changed, 61 insertions(+) create mode 100644 .builds/archlinux.yml create mode 100644 .builds/debian_oldstable.yml create mode 100644 .builds/debian_stable.yml (limited to '.builds') diff --git a/.builds/archlinux.yml b/.builds/archlinux.yml new file mode 100644 index 0000000..2dfea59 --- /dev/null +++ b/.builds/archlinux.yml @@ -0,0 +1,20 @@ +image: archlinux +packages: + - python-nose + - python-coverage + - flake8 + - python-isort +sources: + - https://git.sr.ht/~valhalla/hazwaz +tasks: + - test: | + cd hazwaz + sh check coverage + - qa: | + cd hazwaz + sh check qa +triggers: + - action: email + condition: failure + to: valhalla@trueelena.org + diff --git a/.builds/debian_oldstable.yml b/.builds/debian_oldstable.yml new file mode 100644 index 0000000..33c256b --- /dev/null +++ b/.builds/debian_oldstable.yml @@ -0,0 +1,21 @@ +image: debian/oldstable +packages: + - python3-nose3 + - python3-coverage + - flake8 + - isort + - python3-doc8 +sources: + - https://git.sr.ht/~valhalla/hazwaz +tasks: + - test: | + cd hazwaz + sh check coverage + - qa: | + cd hazwaz + sh check qa +triggers: + - action: email + condition: failure + to: valhalla@trueelena.org + diff --git a/.builds/debian_stable.yml b/.builds/debian_stable.yml new file mode 100644 index 0000000..1a5ec44 --- /dev/null +++ b/.builds/debian_stable.yml @@ -0,0 +1,20 @@ +image: debian/stable +packages: + - python3-nose2 + - python3-coverage + - flake8 + - python3-doc8 + - isort +sources: + - https://git.sr.ht/~valhalla/hazwaz +tasks: + - test: | + cd hazwaz + sh check coverage + - qa: | + cd hazwaz + sh check qa +triggers: + - action: email + condition: failure + to: valhalla@trueelena.org -- cgit v1.2.3