wallet-core/.gitlab-ci.yml
2020-08-06 17:15:08 -03:00

33 lines
606 B
YAML

image: "registry.gitlab.com/gnu-taler/docker-taler-ci:latest"
before_script:
- pg_ctlcluster 12 main start
test_legacy:
script:
- cd integrationtests
- ./test-base.sh
- ./test-double-link.sh
- ./test-double-spend.sh
- ./test-recoup.sh
- ./test-refund.sh
- ./test-retries.sh
- ./test-withdrawal.sh
allow_failure: true
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