[elbe-devel] [PATCH 2/2] github: add pytest workflow
Thomas Weißschuh
thomas.weissschuh at linutronix.de
Fri Mar 14 18:08:05 CET 2025
The real ELBE CI is currently hosted inside Linutronix and not accessible to
the public. GitHub is not the main development platform but is still used
by contributors.
All the unittests are driven by pytest. At some point pytest will also be used
to drive the system-level tests.
Add a workflow to execute pytest. It will automatically execute all available
tests, also upcoming ones.
This replaces https://github.com/Linutronix/elbe/pull/385 tries to implement
full system tests, but ties them directly into GitHub actions, preventing local
usage by developers.
Signed-off-by: Thomas Weißschuh <thomas.weissschuh at linutronix.de>
---
.github/workflows/pytest.yml | 23 +++++++++++++++++++++++
1 file changed, 23 insertions(+)
diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml
new file mode 100644
index 0000000000000000000000000000000000000000..f4d1ac9b5f96243144841a141595a3912f64399f
--- /dev/null
+++ b/.github/workflows/pytest.yml
@@ -0,0 +1,23 @@
+name: pytest
+
+on:
+ push:
+ pull_request:
+
+permissions:
+ contents: read
+
+jobs:
+ build:
+ runs-on: ubuntu-latest
+
+ steps:
+ - uses: actions/checkout at v4
+ - name: Install dependencies
+ run: |
+ sudo apt install mypy python3-pytest \
+ flake8 python3-flake8-quotes python3-flake8-import-order \
+ python3-gpg python3-passlib
+ - name: Test with pytest
+ run: |
+ pytest
--
2.48.1
More information about the elbe-devel
mailing list