We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 34c8949 commit b4a8576Copy full SHA for b4a8576
2 files changed
.github/workflows/python-ci.yml
@@ -66,3 +66,20 @@ jobs:
66
run: make lint
67
- name: Tests
68
run: make test-coverage
69
+
70
+ integration-test:
71
+ runs-on: ubuntu-22.04
72
73
+ steps:
74
+ - uses: actions/checkout@v4
75
+ with:
76
+ fetch-depth: 2
77
+ - name: Install system dependencies
78
+ run: sudo apt-get update && sudo apt-get install -y libkrb5-dev # for kerberos
79
+ - name: Install
80
+ run: make install
81
+ - name: Run integration tests
82
+ run: make test-integration
83
+ - name: Show debug logs
84
+ if: ${{ failure() }}
85
+ run: docker compose -f dev/docker-compose.yml logs
.github/workflows/python-integration.yml
0 commit comments