summaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml64
1 files changed, 0 insertions, 64 deletions
diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644
index 5f92b62..0000000
--- a/.travis.yml
+++ /dev/null
@@ -1,64 +0,0 @@
-before_install:
-- pip install --upgrade-strategy eager -U pip wheel
-language: python
-cache:
-- apt
-- pip
-dist: bionic
-matrix:
- include:
- - python: '3.5'
- dist: xenial
- - python: '3.6'
- - python: '3.7'
- - python: '3.8'
- - os: osx
- language: generic
- env: NMODE=nikola OS=macOS
- python: '3.8'
- before_install:
- - brew cask uninstall --force java
- - brew update
- - brew uninstall gdal postgis
- - brew unlink python@2
- - brew upgrade python
- - python3 -m venv nikola-tests-venv
- - source nikola-tests-venv/bin/activate
- - pip install --upgrade-strategy eager -U pip wheel
- - python: '3.8'
- env: NMODE=flake8
- - python: '3.8'
- env: NMODE=basereq
-env:
- matrix:
- - NMODE=nikola
- global:
- secure: GqUDW0j4Ay8pS9tS/g5JBYGtgBG0g0oD2g4X9JXgVchiFj3GIRL+dwiXpgx3LELy7nCWF3EzClFxxMdVqqxizQ/I8xqiA0XL/rf5z/y+9d9nmKOxV8SV73n0eCgsHWkbdSLJ6MKs6s0Trlz9jLu/P+Bhfu2ttqkOH8WttfEf3VE=
-install:
-- if [[ $NMODE == 'nikola' ]]; then pip install --upgrade-strategy eager -Ur requirements-tests.txt; if [[ "$?" != '0' ]]; then cat /home/travis/.pip/pip.log; false; fi; fi
-- if [[ $NMODE == 'nikola' ]]; then pip install --upgrade-strategy eager -U codacy-coverage; if [[ "$?" != '0' ]]; then cat /home/travis/.pip/pip.log; false; fi; fi
-- if [[ $NMODE == 'basereq' ]]; then pip install --upgrade-strategy eager -Ur requirements.txt; if [[ "$?" != '0' ]]; then cat /home/travis/.pip/pip.log; false; fi; fi
-- if [[ $NMODE == 'nikola' || $NMODE == 'basereq' ]]; then pip install .; fi
-- if [[ $NMODE == 'flake8' ]]; then pip install flake8 pydocstyle; fi
-script:
-- if [[ $NMODE == 'nikola' ]]; then py.test tests/; fi
-- if [[ $NMODE == 'nikola' ]]; then nikola; fi
-- if [[ $NMODE == 'nikola' ]]; then nikola help; fi
-- if [[ $NMODE == 'nikola' ]]; then scripts/baseline.sh check; fi
-- if [[ $NMODE == 'nikola' ]]; then scripts/codacy_coverage.sh; fi
-- if [[ $NMODE == 'flake8' ]]; then flake8 nikola/ tests/; fi
-- if [[ $NMODE == 'flake8' ]]; then pydocstyle --count --match-dir='(?!^\\.)(?!data).*' nikola/; fi
-- if [[ $NMODE == 'basereq' ]]; then cd /; nikola help; fi
-- if [[ $NMODE == 'basereq' ]]; then cd /tmp; nikola init -qd nsite; fi
-- if [[ $NMODE == 'basereq' ]]; then cd /tmp/nsite; nikola build; fi
-after_success:
-notifications:
- irc:
- channels:
- - chat.freenode.net#nikola
- template:
- - '%{repository}#%{build_number} (%{branch} - %{commit} : %{author}): %{message}'
- - 'Change view: %{compare_url}'
- - 'Build details: %{build_url}'
- skip_join: false
- use_notice: true