diff --git a/circle.yml b/circle.yml new file mode 100644 index 00000000000..e5b970638bf --- /dev/null +++ b/circle.yml @@ -0,0 +1,15 @@ +machine: + environment: + TEST_NO_FUSE: 1 + TEST_VERBOSE: 1 + TRAVIS: 1 + +dependencies: + pre: + # setup ipv6 + - sudo sysctl -w net.ipv6.conf.lo.disable_ipv6=0 net.ipv6.conf.default.disable_ipv6=0 net.ipv6.conf.all.disable_ipv6=0 + +test: + override: + - make test_go_expensive + - make test_sharness_expensive diff --git a/test/sharness/t0060-daemon.sh b/test/sharness/t0060-daemon.sh index 91e59e7497c..e0aff7b5edf 100755 --- a/test/sharness/t0060-daemon.sh +++ b/test/sharness/t0060-daemon.sh @@ -10,7 +10,8 @@ test_description="Test daemon command" # this needs to be in a different test than "ipfs daemon --init" below test_expect_success "setup IPFS_PATH" ' - IPFS_PATH="$(pwd)/.ipfs" + IPFS_PATH="$(pwd)/.ipfs" && + export IPFS_PATH ' # NOTE: this should remove bootstrap peers (needs a flag)