File tree 1 file changed +2
-9
lines changed
1 file changed +2
-9
lines changed Original file line number Diff line number Diff line change 23
23
with :
24
24
path : /run/user/${{ env.UID }}/http_cache.sqlite
25
25
key : ${{ runner.os }}-http_cache.sqlite
26
- - run : |
27
- nix develop --command bash -c "python setup.py test 2> test.out" || true
28
- status=$?
29
- # echo ::set-output name=errors::`cat test.out`
30
- EOF=$(dd if=/dev/urandom bs=15 count=1 status=none | base64)
31
- echo "text<<$EOF" >> $GITHUB_STEP_SUMMARY
32
- echo "FiPy messages: $(cat test.out)." >> $GITHUB_STEP_SUMMARY
33
- echo "$EOF" >> $GITHUB_STEP_SUMMARY
34
- exit $status
26
+ - run : nix develop --command bash -c "pip install -e ."
27
+ - run : nix develop --command bash -c "python setup.py test"
35
28
- run : nix develop --command bash -c "py.test --nbval --nbval-sanitize-with examples/sanitize.cfg examples/index.ipynb"
36
29
- uses : actions/cache/save@v3
37
30
if : always()
You can’t perform that action at this time.
0 commit comments