Skip to content

Commit c93133e

Browse files
committed
undo
1 parent 84e3f4c commit c93133e

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

.github/workflows/ci.yaml

-5
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,6 @@ jobs:
3333

3434
test_integration:
3535
runs-on: ubuntu-latest
36-
timeout-minutes: 60
37-
strategy:
38-
fail-fast: false
3936
services:
4037
unstructured-api:
4138
image: quay.io/unstructured-io/unstructured-api:latest
@@ -53,5 +50,3 @@ jobs:
5350
run: make install
5451
- name: Run integration tests
5552
run: make test-integration
56-
- name: Get unstructured-api logs
57-
run: docker logs unstructured-api

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,12 @@ check:
3434
## test-unit: run unit tests
3535
.PHONY: test-unit
3636
test-unit:
37-
npx jest --verbose --detectOpenHandles --config jest.config.js test/unit
37+
npx jest --detectOpenHandles --config jest.config.js test/unit
3838

3939
## test-integration: run integration tests
4040
.PHONY: test-integration
4141
test-integration:
42-
npx jest --verbose --detectOpenHandles --config jest.config.js test/integration
42+
npx jest --detectOpenHandles --config jest.config.js test/integration
4343

4444
## test: run all tests
4545
.PHONY: test

0 commit comments

Comments
 (0)