Skip to content

Commit 7ffcd45

Browse files
committed
Fix pytest capture error
1 parent 214c765 commit 7ffcd45

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/python-lint.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ jobs:
7878
- name: Run Pytest suite
7979
env:
8080
ENABLE_HOPSWORKS_USAGE: "false"
81-
run: pytest python/tests
81+
run: pytest -s python/tests
8282

8383
unit_tests_ubuntu_pandas:
8484
name: Unit Testing (Ubuntu) (Pandas 1.x)
@@ -107,7 +107,7 @@ jobs:
107107
- name: Run Pytest suite
108108
env:
109109
ENABLE_HOPSWORKS_USAGE: "false"
110-
run: pytest python/tests
110+
run: pytest -s python/tests
111111

112112
unit_tests_ubuntu_local:
113113
name: Unit Testing (Ubuntu) (Local TZ)
@@ -136,7 +136,7 @@ jobs:
136136
- name: Run Pytest suite
137137
env:
138138
ENABLE_HOPSWORKS_USAGE: "false"
139-
run: pytest python/tests
139+
run: pytest -s python/tests
140140

141141
unit_tests_ubuntu_typechecked:
142142
name: Typechecked Unit Testing (Ubuntu)
@@ -160,7 +160,7 @@ jobs:
160160
env:
161161
ENABLE_HOPSWORKS_USAGE: "false"
162162
HOPSWORKS_RUN_WITH_TYPECHECK: "true"
163-
run: pytest python/tests
163+
run: pytest -s python/tests
164164
continue-on-error: true
165165

166166
unit_tests_windows_utc:
@@ -190,7 +190,7 @@ jobs:
190190
- name: Run Pytest suite
191191
env:
192192
ENABLE_HOPSWORKS_USAGE: "false"
193-
run: pytest python/tests
193+
run: pytest -s python/tests
194194

195195
unit_tests_windows_local:
196196
name: Unit Testing (Windows) (Local TZ)
@@ -222,4 +222,4 @@ jobs:
222222
- name: Run Pytest suite
223223
env:
224224
ENABLE_HOPSWORKS_USAGE: "false"
225-
run: pytest python/tests
225+
run: pytest -s python/tests

0 commit comments

Comments
 (0)