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

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

parent 399f442f
No related branches found
No related tags found
1 merge request!31CI: Don't run CI tests on tags or master branch
Pipeline #11501 passed
...@@ -11,6 +11,9 @@ stages: ...@@ -11,6 +11,9 @@ stages:
test:linux: test:linux:
image: python:3.7 image: python:3.7
except:
- tags
- master@fsl/base
script: script:
- pip install pytest - pip install pytest
- pytest -v tests - pytest -v tests
...@@ -20,6 +23,9 @@ test:linux: ...@@ -20,6 +23,9 @@ test:linux:
test:macos: test:macos:
image: python:3.7 image: python:3.7
except:
- tags
- master@fsl/base
script: script:
- pip install pytest - pip install pytest
- pytest -v tests - 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