From cb83c9cff2f912de7ae31f4dd191f72003ae7332 Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Sun, 4 Feb 2018 18:33:50 +0100 Subject: [PATCH] Add a short system check before publishing packages --- .gitlab-ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 561982ef5d..f7aa15579e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -19,6 +19,10 @@ pypi: - pip install -U pip wheel setuptools - XDG_CACHE_HOME=/cache pip3 install -Ur src/requirements.txt -r src/requirements/dev.txt -r src/requirements/py34.txt - cd src + - python setup.py sdist + - pip install dist/pretix-*.tar.gz + - python -m pretix migrate + - python -m pretix check - python setup.py sdist upload - python setup.py bdist_wheel upload tags: