diff --git a/.travis.yml b/.travis.yml index 0f71e35..4f82064 100644 --- a/.travis.yml +++ b/.travis.yml @@ -17,4 +17,4 @@ install: beforeScript: - sleep 15 script: - - task test \ No newline at end of file + - task test-unit \ No newline at end of file diff --git a/Taskfile.yml b/Taskfile.yml index d2688d8..e7785bd 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -26,6 +26,10 @@ cover: - goverage ./... - go tool cover -html=coverage.out +test-unit: + deps: [test-connecter, test-mongo] + desc: Run all unit tests. + test: deps: [test-connecter, test-mongo, test-acceptance] desc: Run all tests.