From 1d8af39f16019660768ba3a59eaf352cb9de7f80 Mon Sep 17 00:00:00 2001 From: Qi Zhang <25192197+singularitti@users.noreply.github.com> Date: Mon, 18 Dec 2023 02:30:17 -0500 Subject: [PATCH] Delete .travis.yml --- .travis.yml | 42 ------------------------------------------ 1 file changed, 42 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 76b711c..0000000 --- a/.travis.yml +++ /dev/null @@ -1,42 +0,0 @@ -language: python -matrix: - include: - - name: "Python 3.6 on Xenial Linux" - python: 3.6 - dist: xenial - - name: "Python 3.7.1 on Xenial Linux" - python: 3.7 - dist: xenial - - name: "Python 3.6 on macOS" - os: osx - osx_image: xcode10.1 - language: shell - - name: "Python 3.7.2 on macOS" - os: osx - osx_image: xcode10.2 # Python 3.7.2 running on macOS 10.14.3 - language: shell # 'language: python' is an error on Travis CI macOS -sudo: required -install: - - pip3 install . - - pip3 install -U pytest - - pip3 install -Iv sphinx==1.7.4 - - pip3 install sphinx-autodoc-typehints - - pip3 install sphinx_bootstrap_theme -script: - - pytest qha/tests/test_different_phonon_dos.py - - pytest qha/tests/test_read_input.py - - pytest qha/tests/test_single_configuration.py - - pytest qha/tests/test_unit_conversion.py - - cd docs/ - - make clean && make html -deploy: - provider: pages - skip-cleanup: true - github-token: $GITHUB_TOKEN # Set in the settings page of your repository, as a secure variable - keep-history: true - on: - branch: master - local-dir: docs/build/html/ -notifications: - email: - - singularitti@outlook.com