Skip to content

Commit 94532e0

Browse files
committed
Add "test" target to Makefile.
1 parent 570dbd3 commit 94532e0

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

.travis.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,7 @@ env:
1414
- TEST_VERBOSE=1
1515

1616
script:
17-
- make -C sharness
18-
- go test ./ipfs-5-to-6/migration/
17+
- make test
1918

2019
# For docker containers
2120

Makefile

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
11
install:
22
go install
33
@echo "fs-repo-migrations now installed, type 'fs-repo-migrations' to run"
4+
5+
test: test_go sharness
6+
7+
test_go:
8+
go test ./ipfs-5-to-6/... # go test ./... fails see #66
9+
10+
sharness:
11+
make -C sharness
12+
13+
.PHONY: test test_go sharness

0 commit comments

Comments
 (0)