diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 9d94f43a..00000000 --- a/.travis.yml +++ /dev/null @@ -1,42 +0,0 @@ -# Config file for automatic testing at travis-ci.org -language: python -# Workaround for being able to use Python 3.7 (2019-03) -sudo: required -os: linux -dist: xenial - -jobs: - include: - - python: "2.7" - env: DEPS="numpy nose" - # As of 2018-10, Travis has installation problems with the DEPS below, so Python 3.3 is not tested anymore: - #- python: "3.3" - # env: DEPS="numpy nose" - - python: "3.4" - env: DEPS="numpy nose" - - python: "3.5" - env: DEPS="numpy nose" - - python: "3.6" - env: DEPS="numpy nose" - - python: "3.7" - env: DEPS="numpy nose" - - python: "3.8" - env: DEPS="numpy nose" - - python: "3.9" - env: DEPS="numpy nose" - -before_install: - - pip install setuptools --upgrade - - pip install pip --upgrade - - pip install $DEPS - - pip install codecov - -script: - - python setup.py egg_info - - python setup.py nosetests -sv --with-coverage - # Generate documentation - #- cd doc - #- make html - -after_success: - - codecov diff --git a/appveyor.yml b/appveyor.yml deleted file mode 100644 index c9adde86..00000000 --- a/appveyor.yml +++ /dev/null @@ -1,59 +0,0 @@ -# Adapted from https://github.com/bsmurphy/PyKrige/blob/master/appveyor.yml -build: false - -environment: - global: - # SDK v7.0 MSVC Express 2008's SetEnv.cmd script will fail if the - # /E:ON and /V:ON options are not enabled in the batch script intepreter - # See: http://stackoverflow.com/a/13751649/163740 - WITH_COMPILER: "cmd /E:ON /V:ON /C .\\appveyor\\run_with_compiler.cmd" - matrix: - - PYTHON_VERSION: 2.7 - PYTHON_ARCH: "64" - MINICONDA: C:\Miniconda-x64 - - PYTHON_VERSION: 3.5 - PYTHON_ARCH: "64" - MINICONDA: C:\Miniconda3-x64 - - PYTHON_VERSION: 3.6 - PYTHON_ARCH: "64" - MINICONDA: C:\Miniconda3-x64 - - PYTHON_VERSION: 3.7 - PYTHON_ARCH: "64" - MINICONDA: C:\Miniconda3-x64 - - PYTHON_VERSION: 3.8 - PYTHON_ARCH: "64" - MINICONDA: C:\Miniconda3-x64 - # - PYTHON_VERSION: 3.9 - # PYTHON_ARCH: "64" - # MINICONDA: C:\Miniconda3-x64 - # Not running the tests on 32 bit Python at the moment - # as AppVeyor is just too slow - #- PYTHON_VERSION: 2.7 - # PYTHON_ARCH: "32" - # MINICONDA: C:\Miniconda - #- PYTHON_VERSION: 3.5 - # PYTHON_ARCH: "32" - # MINICONDA: C:\Miniconda3 - -init: - - "ECHO %PYTHON% %PYTHON_VERSION% %PYTHON_ARCH% %MINICONDA%" - -install: - - "set PATH=%MINICONDA%;%MINICONDA%\\Scripts;%PATH%" - - conda config --set always_yes yes --set changeps1 no - - conda update -q conda - # Set paths correctly (https://github.com/conda/conda/issues/8865#issuecomment-508865446): - - "call %MINICONDA%\\Scripts\\activate" - - conda init cmd.exe - - conda info -a - # Create a conda virtual environement - - "conda create -n uncty-env numpy nose python=%PYTHON_VERSION%" - - activate uncty-env - - - -test_script: - - "cd C:\\projects\\uncertainties" - - activate uncty-env # Activate the virtual environment - - python setup.py egg_info - - python setup.py nosetests -sv