From ce0599ab552a3bedd9b1e1eb5fb3dd49782d5c36 Mon Sep 17 00:00:00 2001 From: Nicolas Braud-Santoni Date: Thu, 20 Jun 2019 09:52:04 -0700 Subject: [PATCH] =?UTF-8?q?Cirrus=20CI:=20Do=20not=20install=20in=20?= =?UTF-8?q?=E2=80=9Ceditable=E2=80=9D=20mode?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This requires setup.py to be present, instead of a PEP 518 build spec. --- .cirrus.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.cirrus.yml b/.cirrus.yml index a236aa74..573e16a7 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -2,7 +2,7 @@ Lint_task: container: image: python:3.7-slim install_script: - - pip install -e .[linting] + - pip install .[linting] script: - flake8 --version - flake8 @@ -18,7 +18,7 @@ Linux_task: - image: python:3.7-slim - image: python:3.8-rc-slim install_script: - - pip install -e .[testing] + - pip install .[testing] script: - python3 --version - python3 -m pytest --verbose @@ -39,7 +39,7 @@ macOS_task: - pyenv install ${PYTHON} - pyenv global ${PYTHON} - pyenv rehash - - pip install -e .[testing] + - pip install .[testing] script: - python3 --version - python3 -m pytest --verbose @@ -55,7 +55,7 @@ FreeBSD_task: - PY=`echo $PYTHON | tr -d '.'` - pkg install -y python${PY} py${PY}-setuptools - python${PYTHON} -m ensurepip - - python${PYTHON} -m pip install -e .[testing] + - python${PYTHON} -m pip install .[testing] script: - python${PYTHON} --version - python${PYTHON} -m pytest --verbose @@ -70,7 +70,7 @@ Windows_task: - image: python:3.8-rc-windowsservercore-1809 install_script: - - C:\Python\python.exe -m pip install -e .[testing] + - C:\Python\python.exe -m pip install .[testing] script: - C:\Python\python.exe --version - C:\Python\python.exe -m pytest --verbose