diff options
Diffstat (limited to '.gitlab-ci.yml')
| -rw-r--r-- | .gitlab-ci.yml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 000000000..80ee37207 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,18 @@ +# This is core test runner +before_script: + - pip install tox + +sqlite: + script: + - tox + + tags: + - sqlite + + +pgsql: + script: + - MAILMAN_EXTRA_TESTING_CFG=/data/postgres.cfg tox -e pg + + tags: + - postgres |
