We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8c8e04d commit cbe997aCopy full SHA for cbe997a
1 file changed
.github/workflows/build.yml
@@ -60,12 +60,13 @@ jobs:
60
- name: Unit Test
61
run: |
62
python -m jepler_udecimal.test
63
- if ! env MICROPYPATH=. PYTHONPATH=. MICROPY_MICROPYTHON=circuitpython/ports/unix/micropython circuitpython/tests/run-tests -d examples; then
+ if ! env MICROPYPATH=. PYTHONPATH=. MICROPY_MICROPYTHON=circuitpython/ports/unix/micropython circuitpython/tests/run-tests.py -d examples; then
64
for exp in *.exp; do
65
testbase=$(basename $exp .exp);
66
echo -e "\nFAILURE $testbase";
67
diff -u $testbase.exp $testbase.out;
68
done
69
+ exit 1
70
fi
71
- name: Build assets
72
run: circuitpython-build-bundles --package_folder_prefix jepler --filename_prefix ${{ steps.repo-name.outputs.repo-name }} --library_location .
0 commit comments