We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 074c0e8 commit 16b6024Copy full SHA for 16b6024
.github/workflows/python-ci.yml
@@ -62,10 +62,10 @@ jobs:
62
run: sudo apt-get update && sudo apt-get install -y libkrb5-dev # for kerberos
63
- name: Install
64
run: make install-dependencies
65
- - name: Linters
+ - name: Run linters
66
run: make lint
67
- - name: Tests
68
- run: make test-coverage-unit
+ - name: Run unit tests
+ run: make test
69
70
integration-test:
71
runs-on: ubuntu-22.04
@@ -81,7 +81,7 @@ jobs:
81
run: make install
82
83
- name: Run integration tests
84
- run: make test-coverage-integration
+ run: make test-integration
85
- name: Show debug logs
86
if: ${{ failure() }}
87
run: docker compose -f dev/docker-compose.yml logs
0 commit comments