diff options
| author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2021-01-30 16:31:12 -0500 |
|---|---|---|
| committer | Todd Leonhardt <todd.leonhardt@gmail.com> | 2021-01-30 16:31:12 -0500 |
| commit | 7b7f724eec6f0c577792de2c5e3bb37c3e9cf5e3 (patch) | |
| tree | 7f5b04efe16a9763e9b3071287fab8b0acdae952 | |
| parent | 47303c547a9186221d11c976d36898cee73d3d8c (diff) | |
| download | cmd2-git-7b7f724eec6f0c577792de2c5e3bb37c3e9cf5e3.tar.gz | |
Attempt to speedup AppVeyor build
This switches from using a conda-based Windows environment on AppVeyor to a default one.
The purpose is to see if we can significantly speed up tests running on AppVeyor. Because if we can't, then I am just going to remove use of AppVeyor entirely in favor of GitHub Actions.
| -rw-r--r-- | .appveyor.yml | 17 |
1 files changed, 4 insertions, 13 deletions
diff --git a/.appveyor.yml b/.appveyor.yml index 33f48d91..c9796521 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -4,20 +4,16 @@ build: off environment: PYTHONUNBUFFERED: 1 matrix: - - PYTHON: "C:\\Miniconda36-x64" - PYTHON_VERSION: "3.6.x" + - PYTHON_VERSION: "3.6.x" PYTHON_ARCH: "64" NOXSESSION: "tests-3.6" - - PYTHON: "C:\\Miniconda37-x64" - PYTHON_VERSION: "3.7.x" + - PYTHON_VERSION: "3.7.x" PYTHON_ARCH: "64" NOXSESSION: "tests-3.7" init: - "%PYTHON%/python -V" - - mkdir C:\Users\appveyor\.conda - - call %PYTHON%\Scripts\activate.bat install: # Prepend the right Python version to the PATH of this build @@ -27,13 +23,8 @@ install: - "python --version" - "python -c \"import struct; print(struct.calcsize('P') * 8)\"" - # Update conda stuff to make sure pip, setuptools, wheel etc are up to date - - "conda update --all -y" - - # Install nox - - "python -m pip install --upgrade nox" - - + # Update Python stuff to make sure pip, setuptools, wheel etc are up to date + - "python -m pip install -U --user pip setuptools setuptools_scm flake8 nox" test_script: - "nox --non-interactive --session %NOXSESSION%" |
