Fix MitM Babai e-admissability computation #749
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 0 * * 0' # weekly | |
env: | |
JOBS: 2 | |
DEPS: sagemath | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Check Out | |
uses: actions/checkout@v2 | |
- name: Install prerequisites | |
run: | | |
sudo DEBIAN_FRONTEND=noninteractive apt-get update | |
sudo DEBIAN_FRONTEND=noninteractive apt-get install $DEPS | |
- name: Test | |
run: | | |
export DOT_SAGE=$HOME/.sage/ | |
pip install --upgrade pytest traitlets nbmake nbclient sphinxcontrib-jupyter | |
# TODO: for some strange reason it hangs otherwise | |
pip install --upgrade nbmake | |
# make jupyter notebooks | |
make jupyter | |
# We have to manually copy over those notebooks we want check | |
cp docs/_build/jupyter/prompt.ipynb . | |
cp docs/_build/jupyter/algorithms/*.ipynb . | |
# sage wants it | |
sudo mkdir -p /usr/share/sagemath/build/pkgs | |
# run tests | |
PYTHONIOENCODING=UTF-8 PYTHONPATH=`pwd` python -m pytest | |