Newer
Older
stages:
- build
- deploy
stage: build
before_script:
- pip3 install black numpy
script:
- black . --check
- python3 -m unittest discover -s finam -v
documentation:
stage: build
before_script:
- pip3 install sphinx numpy pandas
script:
- export PYTHONPATH="."
- sphinx-apidoc --separate -o docs finam