Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions .github/workflows/downstream.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,3 +75,16 @@ jobs:
# cd ../sage/
# # From https://github.com/sagemath/sage/blob/develop/pkgs/sagemath-repl/tox.ini
# sage-runtests -p --environment=sage.all__sagemath_repl --baseline-stats-path=pkgs/sagemath-repl/known-test-failures.json --initial --optional=sage src/sage/repl src/sage/doctest src/sage/misc/sage_input.py src/sage/misc/sage_eval.py
- name: Install pyflyby
run: |
cd ..
git clone https://github.com/deshaw/pyflyby
cd pyflyby
pip install -e .
# TODO: use [test] group instead once available
pip install 'pytest<=8' requests
cd ..
- name: Test pyflyby (IPython integration only)
run: |
cd ../pyflyby
pytest tests/test_interactive.py -k 'not test_timeit_complete_autoimport_member_1'
Loading