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
12 changes: 11 additions & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,17 @@ stages:

.base_template : &BASE
script:
- cat README.md
- nvidia-smi
- python -m pip install --upgrade pip
- pip install -r requirements.txt
- pip install flake8
- pip install pep8-naming
# stop the build if there are Python syntax errors or undefined names
- flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics --config ./.flake8
# exit-zero treats all errors as warnings.
# - flake8 . --count --statistics --config ./.flake8
- ./runtests.sh --quick
- echo "Done with runtests.sh"

build-ci-test:
stage: build
Expand Down