wallet-core/.gitlab-ci.yml

33 lines
606 B
YAML
Raw Normal View History

image: "registry.gitlab.com/gnu-taler/docker-taler-ci:latest"
before_script:
- pg_ctlcluster 12 main start
2020-08-06 14:03:08 +02:00
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
2020-08-06 14:03:08 +02:00
test_pytest:
script:
- ./bootstrap
- ./configure
- make install
- pytest -rP tests/
2020-08-06 14:03:08 +02:00
test_typescript:
script:
- ./bootstrap
- ./configure
- make install integrationtests
after_script:
- pg_ctlcluster 12 main stop