fix: clean clone and test
Some checks failed
CI / test (push) Failing after 35s

This commit is contained in:
2026-02-04 20:35:42 +00:00
parent 5116c8ea0d
commit 14ab23b9a6

View File

@@ -6,15 +6,14 @@ jobs:
steps:
- name: Clone repository
run: |
git clone https://7000pct.gitea.bloupla.net/7000pctAUTO/confsync.git /tmp/confsync
cp -r /tmp/confsync/* .
git submodule update --init --recursive || true
rm -rf confsync || true
git clone https://7000pct.gitea.bloupla.net/7000pctAUTO/confsync.git .
- name: Setup Python
run: |
apt-get update && apt-get install -y python3 python3-pip git
- name: Install dependencies
- name: Install
run: |
pip install -e .
pip install pytest
- name: Run tests
run: pytest -v || true
- name: Test
run: pytest -v