Skip to content
Snippets Groups Projects
Commit e5b804b5 authored by Paul McCarthy's avatar Paul McCarthy :mountain_bicyclist:
Browse files

Merge branch 'ci/restrict-jobs' into 'master'

CI: Don't run CI tests on tags or master branch

See merge request !31
parents 399f442f 31cbabc6
No related branches found
No related tags found
1 merge request!31CI: Don't run CI tests on tags or master branch
Pipeline #11503 passed
......@@ -11,6 +11,9 @@ stages:
test:linux:
image: python:3.7
except:
- tags
- master@fsl/base
script:
- pip install pytest
- pytest -v tests
......@@ -20,6 +23,9 @@ test:linux:
test:macos:
image: python:3.7
except:
- tags
- master@fsl/base
script:
- pip install pytest
- pytest -v tests
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment