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 4e8e10e commit 2a07b35Copy full SHA for 2a07b35
.github/workflows/ci.yml
@@ -200,3 +200,16 @@ jobs:
200
- name: Move compiled files to betterproto2
201
shell: bash
202
run: cp -r betterproto2_compiler/tests/outputs betterproto2/tests
203
+
204
+ - name: Create test script
205
+ shell: bash
206
+ working-directory: ./betterproto2
207
+ run: |
208
+ echo '#!/bin/bash' > script.sh
209
+ echo 'python -m tests.conformance.main' >> script.sh
210
+ chmod +x script.sh
211
212
+ - name: Run conformance tests
213
214
215
+ uv run conformance_test_runner ./script.sh
0 commit comments