summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIwan Aucamp <aucampia@gmail.com>2021-11-09 18:37:29 +0100
committerIwan Aucamp <aucampia@gmail.com>2021-11-09 18:37:29 +0100
commitc1181f62e0ffbe4a1f3aa473f2e9f1b4e8a07973 (patch)
tree2099408acf236606f191e614baa6ae7bb7b1abed
parentaa9438da38fdd1f3d1f814c957668ccdb2838529 (diff)
downloadrdflib-c1181f62e0ffbe4a1f3aa473f2e9f1b4e8a07973.tar.gz
Remove .travis.yml as travis is no longer in use.
-rw-r--r--.travis.yml46
1 files changed, 0 insertions, 46 deletions
diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644
index a56836ad..00000000
--- a/.travis.yml
+++ /dev/null
@@ -1,46 +0,0 @@
-# http://travis-ci.org/#!/RDFLib/rdflib
-os: linux
-arch:
- - amd64
- - ppc64le
-language: python
-branches:
- only:
- # only build master and release branches (merge request are built anyhow)
- - master
- - /^\d+\.\d+\.\d+(-.*)?$/
-git:
- depth: 3
-
-python:
- - 3.6
- - 3.7
- - 3.8
-
-jobs:
- include:
- - python: 3.8
- dist: focal
-
-before_install:
- - pip install -U setuptools pip # seems travis comes with a too old setuptools for html5lib
- - bash .travis.fuseki_install_optional.sh
-
-install:
- - pip install --default-timeout 60 -r requirements.txt
- - pip install --default-timeout 60 -r requirements.dev.txt
- - pip install --default-timeout 60 coveralls && export HAS_COVERALLS=1
- - python setup.py install
-
-before_script:
- - flake8 --exit-zero rdflib
-
-script:
- - pytest --cov
-
-after_success:
- - if [[ $HAS_COVERALLS ]] ; then coveralls ; fi
-
-notifications:
- irc:
- channels: "chat.freenode.net#rdflib"