From ae365cc571eb7cda8f282c0e1d21ee5d72ddd052 Mon Sep 17 00:00:00 2001 From: Alec Jacobson Date: Sun, 5 Feb 2023 16:35:22 -0500 Subject: [PATCH] remove travis/azure; subsumed by pip build --- .travis.yml | 25 ---------------- azure-pipelines.yml | 71 --------------------------------------------- 2 files changed, 96 deletions(-) delete mode 100644 .travis.yml delete mode 100644 azure-pipelines.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 8ff84449..00000000 --- a/.travis.yml +++ /dev/null @@ -1,25 +0,0 @@ -language: python -python: - - "3.5" - - "3.6" -os: - - linux - # - osx -addons: - apt: - sources: - - ubuntu-toolchain-r-test - packages: - # - libc++-dev - - gcc-7 - - g++-7 - - libsuitesparse-dev -env: - - CC=gcc-7 && CXX=g++-7 - # - CC=clang CXX=clang++ CXXFLAGS="-stdlib=libc++" -install: - - pip install numpy - - pip install scipy -script: - - python setup.py build --debug install - - python tests/test_basic.py -v \ No newline at end of file diff --git a/azure-pipelines.yml b/azure-pipelines.yml deleted file mode 100644 index 73298c03..00000000 --- a/azure-pipelines.yml +++ /dev/null @@ -1,71 +0,0 @@ -trigger: -- main - - -jobs: -- job: Main - timeoutInMinutes: 0 - strategy: - matrix: - mac36: - imageName: 'macos-10.15' - python.version: '3.6' - mac37: - imageName: 'macos-10.15' - python.version: '3.7' - mac38: - imageName: 'macos-10.15' - python.version: '3.8' - mac39: - imageName: 'macos-10.15' - python.version: '3.9' - mac310: - imageName: 'macos-10.15' - python.version: '3.10' - windows36: - imageName: 'windows-2019' - python.version: '3.6' - windows37: - imageName: 'windows-2019' - python.version: '3.7' - windows38: - imageName: 'windows-2019' - python.version: '3.8' - windows39: - imageName: 'windows-2019' - python.version: '3.9' - windows310: - imageName: 'windows-2019' - python.version: '3.10' - - pool: - vmImage: $(imageName) - - steps: - - task: UsePythonVersion@0 - inputs: - versionSpec: '$(python.version)' - displayName: 'Use Python $(python.version)' - - - script: | - python -m pip install --upgrade pip - pip install numpy - pip install scipy - pip install packaging - displayName: 'Install dependencies' - - - script: | - pip install -ve . - displayName: 'build' - - - script: | - pip install pytest - pip install pytest-cov - pytest tests --doctest-modules --junitxml=junit/test-results.xml --cov=igl --cov-report=xml --cov-report=html - displayName: 'testing' - - - task: PublishTestResults@2 - condition: succeededOrFailed() - inputs: - testResultsFiles: '**/test-*.xml' - testRunTitle: 'Publish test results for Python $(python.version)'