File tree 2 files changed +2
-7
lines changed
2 files changed +2
-7
lines changed Original file line number Diff line number Diff line change 33
33
34
34
test_integration :
35
35
runs-on : ubuntu-latest
36
- timeout-minutes : 60
37
- strategy :
38
- fail-fast : false
39
36
services :
40
37
unstructured-api :
41
38
image : quay.io/unstructured-io/unstructured-api:latest
53
50
run : make install
54
51
- name : Run integration tests
55
52
run : make test-integration
56
- - name : Get unstructured-api logs
57
- run : docker logs unstructured-api
Original file line number Diff line number Diff line change @@ -34,12 +34,12 @@ check:
34
34
# # test-unit: run unit tests
35
35
.PHONY : test-unit
36
36
test-unit :
37
- npx jest --verbose -- detectOpenHandles --config jest.config.js test/unit
37
+ npx jest --detectOpenHandles --config jest.config.js test/unit
38
38
39
39
# # test-integration: run integration tests
40
40
.PHONY : test-integration
41
41
test-integration :
42
- npx jest --verbose -- detectOpenHandles --config jest.config.js test/integration
42
+ npx jest --detectOpenHandles --config jest.config.js test/integration
43
43
44
44
# # test: run all tests
45
45
.PHONY : test
You can’t perform that action at this time.
0 commit comments