.install_debs: &install_debs - apt-get update -o Acquire::Retries=3 - DEBIAN_FRONTEND=noninteractive SUDO_FORCE_REMOVE=yes apt --assume-yes -o Dpkg::Options::="--force-confold" --allow-downgrades install ${CI_PROJECT_DIR}/*.deb .test-stage: stage: test image: "after-install" variables: PYTEST_ADDOPTS: "--color=yes" before_script: - *install_debs cache: paths: - src/tests/apps key: "$CI_JOB_STAGE-$CI_COMMIT_REF_SLUG" needs: - job: build-yunohost artifacts: true - job: build-ssowat artifacts: true - job: build-moulinette artifacts: true - job: upgrade ######################################## # TESTS ######################################## #full-tests: # stage: test # image: "before-install" # variables: # PYTEST_ADDOPTS: "--color=yes" # before_script: # - *install_debs # - yunohost tools postinstall -d domain.tld -u syssa -F 'Syssa Mine' -p the_password --ignore-dyndns --force-diskspace # script: # - python3 -m pytest --cov=yunohost tests/ src/tests/ --junitxml=report.xml # needs: # - job: build-yunohost # artifacts: true # - job: build-ssowat # artifacts: true # - job: build-moulinette # artifacts: true # coverage: '/TOTAL.*\s+(\d+%)/' # artifacts: # reports: # junit: report.xml test-helpers2: extends: .test-stage script: - cd tests - bash test_helpers.sh test-helpers2.1: extends: .test-stage script: - cd tests - bash test_helpers.sh 2.1 test-domains: extends: .test-stage script: - python3 -m pytest src/tests/test_domains.py # only: # changes: # - src/domain.py test-dns: extends: .test-stage script: - python3 -m pytest src/tests/test_dns.py # only: # changes: # - src/dns.py # - src/utils/dns.py test-apps: extends: .test-stage script: - python3 -m pytest src/tests/test_apps.py # only: # changes: # - src/app.py test-appscatalog: extends: .test-stage script: - python3 -m pytest src/tests/test_app_catalog.py # only: # changes: # - src/app_calalog.py test-appurl: extends: .test-stage script: - python3 -m pytest src/tests/test_appurl.py # only: # changes: # - src/app.py test-questions: extends: .test-stage script: - python3 -m pytest src/tests/test_questions.py # only: # changes: # - src/utils/config.py test-app-config: extends: .test-stage script: - python3 -m pytest src/tests/test_app_config.py # only: # changes: # - src/app.py # - src/utils/config.py test-app-resources: extends: .test-stage script: - python3 -m pytest src/tests/test_app_resources.py # only: # changes: # - src/app.py # - src/utils/resources.py test-changeurl: extends: .test-stage script: - python3 -m pytest src/tests/test_changeurl.py # only: # changes: # - src/app.py test-backuprestore: extends: .test-stage script: - python3 -m pytest src/tests/test_backuprestore.py # only: # changes: # - src/backup.py test-permission: extends: .test-stage script: - python3 -m pytest src/tests/test_permission.py # only: # changes: # - src/permission.py test-settings: extends: .test-stage script: - python3 -m pytest src/tests/test_settings.py # only: # changes: # - src/settings.py test-user-group: extends: .test-stage script: - python3 -m pytest src/tests/test_user-group.py # only: # changes: # - src/user.py test-regenconf: extends: .test-stage script: - python3 -m pytest src/tests/test_regenconf.py # only: # changes: # - src/regenconf.py test-service: extends: .test-stage script: - python3 -m pytest src/tests/test_service.py # only: # changes: # - src/service.py test-ldapauth: extends: .test-stage script: - python3 -m pytest src/tests/test_ldapauth.py # only: # changes: # - src/authenticators/*.py test-sso-and-portalapi: extends: .test-stage script: - python3 -m pytest src/tests/test_sso_and_portalapi.py