From 82f88c7c34a31b4686461c85262d99066e15ab2b Mon Sep 17 00:00:00 2001 From: Matthew Webster <mwebster@fmrib.ox.ac.uk> Date: Tue, 27 Feb 2018 16:08:00 +0000 Subject: [PATCH] Changes to run minimal test --- .conda/meta.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.conda/meta.yaml b/.conda/meta.yaml index 4982f3b42..9b4c4afa5 100644 --- a/.conda/meta.yaml +++ b/.conda/meta.yaml @@ -4,22 +4,22 @@ package: version: {{ data['version']}} build: - noarch: python - script: python setup.py install --single-version-externally-managed --record=record.txt + noarch: python + script: python setup.py install --single-version-externally-managed --record=record.txt source: path: ../ requirements: build: - - python >2 + - python {{ python }} - setuptools {% for package in data.get('setup_requires', {}) %} - {{ package.lower() }} {% endfor %} run: - - python >2 + - python {% for package in data.get('install_requires', {}) %} - {{ package.lower() }} {% endfor %} @@ -40,7 +40,7 @@ test: source_files: - {{ data['test_suite'] }} commands: - - python -m pytest {{ data['test_suite'] }} + - python -m pytest {{ data['test_suite'] }} -m "not (fsltest or wxtest or dicomtest or meshtest or igziptest or longtest)" {% endif %} about: -- GitLab