ci: add some vertical space for readability

This commit is contained in:
Erik Sundell
2021-10-16 15:59:30 +02:00
parent d4be3c1313
commit 82212f8494
3 changed files with 16 additions and 0 deletions

View File

@@ -11,28 +11,34 @@ jobs:
- uses: actions/setup-python@v2
with:
python-version: 3.6
- name: Set BOOTSTRAP_PIP_SPEC value
run: |
echo "BOOTSTRAP_PIP_SPEC=git+https://github.com/$GITHUB_REPOSITORY.git@$GITHUB_REF" >> $GITHUB_ENV
- name: Build systemd image
run: |
.github/integration-test.py build-image
- name: Run bootstrap checks
run: |
python3 -m pip install pytest
pytest integration-tests/test_bootstrap.py -s
- name: Run basic tests
run: |
.github/integration-test.py run-test \
--bootstrap-pip-spec "$BOOTSTRAP_PIP_SPEC" \
basic-tests test_hub.py test_proxy.py \
test_install.py test_extensions.py
- name: Run admin tests
run: |
.github/integration-test.py run-test \
--installer-args "--admin admin:admin" \
--bootstrap-pip-spec "$BOOTSTRAP_PIP_SPEC" \
basic-tests test_admin_installer.py \
- name: Run plugin tests
run: |
.github/integration-test.py run-test \