Revision 2b9a2521b4c6d5f084278b2e967040e3020dac9d authored by Leland McInnes on 12 November 2020, 04:04:40 UTC, committed by GitHub on 12 November 2020, 04:04:40 UTC
Fixed typos and minor rephrasing in the examples and user guide
2 parent s 9912773 + f36a51a
Raw File
appveyor.yml
build: "off"

environment:
  matrix:
    - PYTHON_VERSION: "3.6"
      MINICONDA: C:\Miniconda36-x64
    - PYTHON_VERSION: "3.7"
      MINICONDA: C:\Miniconda3-x64

init:
  - "ECHO %PYTHON_VERSION% %MINICONDA%"

install:
  - "set PATH=%MINICONDA%;%MINICONDA%\\Scripts;%PATH%"
  - conda config --set always_yes yes --set changeps1 no
  - conda update -q conda
  - conda info -a
  - "conda create -q -n test-environment python=%PYTHON_VERSION% numpy scipy scikit-learn numba pandas bokeh holoviews datashader nose pytest"
  - activate test-environment
  - pip install -e .

test_script:
  - pytest --show-capture=no -v --disable-warnings
  
back to top