2020-07-24 16:09:30 +02:00
|
|
|
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:
|
2020-07-24 16:09:30 +02:00
|
|
|
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:
|
2020-07-24 16:09:30 +02:00
|
|
|
script:
|
|
|
|
- ./bootstrap
|
|
|
|
- ./configure
|
|
|
|
- make install
|
|
|
|
- pytest -rP tests/
|
|
|
|
|
2020-08-06 14:03:08 +02:00
|
|
|
test_typescript:
|
|
|
|
script:
|
|
|
|
- ./bootstrap
|
|
|
|
- ./configure
|
|
|
|
- make install integrationtests
|
|
|
|
|
2020-07-24 16:09:30 +02:00
|
|
|
after_script:
|
|
|
|
- pg_ctlcluster 12 main stop
|