Skip to content
Closed
Show file tree
Hide file tree
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
9 changes: 9 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,13 @@ install_python_2: &install_python_2
echo "Miniconda 2 is already installed, continuing to build."
fi

run_linter: &run_linter
name: run linter
command: |
$HOME/conda/bin/pip install --upgrade pylint
cd ~/repo
$HOME/conda/bin/pylint spython

test_spython: &test_spython
name: Test Singularity Python (Singularity Version 2 and 3)
command: |
Expand Down Expand Up @@ -99,6 +106,7 @@ jobs:
- singularity/debian-install-3:
singularity-version: 3.1.0
- run: *install_spython
- run: *run_linter
- save_cache:
paths:
- /home/circleci/conda
Expand All @@ -121,6 +129,7 @@ jobs:
- singularity/debian-install-3:
singularity-version: 3.1.0
- run: *install_spython
- run: *run_linter
- save_cache:
paths:
- /home/circleci/conda
Expand Down
Loading