blob: 9eef833c9aef76ca2394580f9bd89ef58da3c7cd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
image: "registry.gitlab.com/gnu-taler/docker-taler-ci:latest"
before_script:
- pg_ctlcluster 12 main start
integration_tests_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
integration_tests:
script:
- ./bootstrap
- ./configure
- make install
- pytest -rP tests/
after_script:
- pg_ctlcluster 12 main stop
|