We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 570dbd3 commit 94532e0Copy full SHA for 94532e0
.travis.yml
@@ -14,8 +14,7 @@ env:
14
- TEST_VERBOSE=1
15
16
script:
17
- - make -C sharness
18
- - go test ./ipfs-5-to-6/migration/
+ - make test
19
20
# For docker containers
21
Makefile
@@ -1,3 +1,13 @@
1
install:
2
go install
3
@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