Skip to content

Commit

Permalink
Fix pytest capture error
Browse files Browse the repository at this point in the history
  • Loading branch information
aversey committed Jun 27, 2024
1 parent 214c765 commit 7ffcd45
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/python-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ jobs:
- name: Run Pytest suite
env:
ENABLE_HOPSWORKS_USAGE: "false"
run: pytest python/tests
run: pytest -s python/tests

unit_tests_ubuntu_pandas:
name: Unit Testing (Ubuntu) (Pandas 1.x)
Expand Down Expand Up @@ -107,7 +107,7 @@ jobs:
- name: Run Pytest suite
env:
ENABLE_HOPSWORKS_USAGE: "false"
run: pytest python/tests
run: pytest -s python/tests

unit_tests_ubuntu_local:
name: Unit Testing (Ubuntu) (Local TZ)
Expand Down Expand Up @@ -136,7 +136,7 @@ jobs:
- name: Run Pytest suite
env:
ENABLE_HOPSWORKS_USAGE: "false"
run: pytest python/tests
run: pytest -s python/tests

unit_tests_ubuntu_typechecked:
name: Typechecked Unit Testing (Ubuntu)
Expand All @@ -160,7 +160,7 @@ jobs:
env:
ENABLE_HOPSWORKS_USAGE: "false"
HOPSWORKS_RUN_WITH_TYPECHECK: "true"
run: pytest python/tests
run: pytest -s python/tests
continue-on-error: true

unit_tests_windows_utc:
Expand Down Expand Up @@ -190,7 +190,7 @@ jobs:
- name: Run Pytest suite
env:
ENABLE_HOPSWORKS_USAGE: "false"
run: pytest python/tests
run: pytest -s python/tests

unit_tests_windows_local:
name: Unit Testing (Windows) (Local TZ)
Expand Down Expand Up @@ -222,4 +222,4 @@ jobs:
- name: Run Pytest suite
env:
ENABLE_HOPSWORKS_USAGE: "false"
run: pytest python/tests
run: pytest -s python/tests

0 comments on commit 7ffcd45

Please sign in to comment.