summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorTorsten Grote <t@grobox.de>2020-08-06 09:03:08 -0300
committerTorsten Grote <t@grobox.de>2020-08-06 17:15:08 -0300
commite79a118ab6fb19eb981e2b1fa29e42455873b97d (patch)
tree2011e5c5f5652bf29c3739b796cf3532139e3bfa /.gitlab-ci.yml
parentb3f0cf97e48ab8e96b203402187655701794bebd (diff)
downloadwallet-core-e79a118ab6fb19eb981e2b1fa29e42455873b97d.tar.gz
wallet-core-e79a118ab6fb19eb981e2b1fa29e42455873b97d.tar.bz2
wallet-core-e79a118ab6fb19eb981e2b1fa29e42455873b97d.zip
Run new integration tests in CI
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml10
1 files changed, 8 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 9eef833c9..b08c05b74 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -3,7 +3,7 @@ image: "registry.gitlab.com/gnu-taler/docker-taler-ci:latest"
before_script:
- pg_ctlcluster 12 main start
-integration_tests_legacy:
+test_legacy:
script:
- cd integrationtests
- ./test-base.sh
@@ -15,12 +15,18 @@ integration_tests_legacy:
- ./test-withdrawal.sh
allow_failure: true
-integration_tests:
+test_pytest:
script:
- ./bootstrap
- ./configure
- make install
- pytest -rP tests/
+test_typescript:
+ script:
+ - ./bootstrap
+ - ./configure
+ - make install integrationtests
+
after_script:
- pg_ctlcluster 12 main stop