Skip to content

Commit b0d7513

Browse files
committed
CP-18272 split off integration tests into new target test-integration
We would like to split tests into those that do not require many external dependencies (test) and those that do (test-integrate). Signed-off-by: Christian Lindig <[email protected]>
1 parent b6e9fc1 commit b0d7513

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ matrix:
88
os: linux
99

1010
script:
11-
- make parson
1211
- make
12+
- make test
1313

Makefile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,12 @@ clean:
2929
cd ocaml; $(OCB) -clean
3030

3131
.PHONY: test
32-
test: rrdtest rrdclient rrdreader
32+
test: rrdtest rrdclient
3333
./rrdtest
3434
seq 1 10 | ./rrdclient rrdclient.rrd
35+
36+
.PHONY: test-integration
37+
test-integration: rrdreader
3538
seq 1 10 | while read i; do \
3639
echo $$i | ./rrdclient rrdclient.rrd ;\
3740
./ocaml/rrdreader.native rrdclient.rrd ;\

0 commit comments

Comments
 (0)