From 489c52affbdd678c08d1da7a68c4722b33bb23cd Mon Sep 17 00:00:00 2001 From: kaliko Date: Sun, 24 Mar 2019 14:34:12 +0100 Subject: [PATCH] ci: Add vinstall test --- .gitlab-ci.yml | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 2b20485..69715bb 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -14,7 +14,7 @@ stages: - test - build -test: +smoketest: stage: test script: - pip install pytest-cov requests @@ -33,10 +33,20 @@ test: - dist/*.tar.gz - dist/*.zip +vinstall: + stage: test + script: + # test virtualenv install + - python3 ./vinstall.py + # smoke test + - ./vmpd-sima --help + artifacts: + expire_in: 1 hour + tag_release: stage: build dependencies: - - test + - smoketest script: - python -V artifacts: -- 2.39.2