Skip to content

Commit 869bc51

Browse files
authored
Switch to TravisCI (#247)
1 parent d2455c8 commit 869bc51

File tree

4 files changed

+15
-29
lines changed

4 files changed

+15
-29
lines changed

.circleci/config.yml

Lines changed: 0 additions & 28 deletions
This file was deleted.

.travis.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
language: python
2+
sudo: required
3+
dist: xenial
4+
install:
5+
- pip install tox-travis
6+
python:
7+
- '3.6'
8+
- '3.7'
9+
script: "tox"
10+
cache: pip

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ A Lisp dialect inspired by Clojure targeting Python 3.
55
**Disclaimer:** _Basilisp is a project I created to learn about Python, Clojure,
66
and hosted languages generally. It should not be used in a production setting._
77

8-
![PyPI](https://img.shields.io/pypi/v/basilisp.svg?style=flat-square) ![python](https://img.shields.io/pypi/pyversions/basilisp.svg?style=flat-square) ![CircleCI](https://img.shields.io/circleci/project/github/chrisrink10/basilisp.svg?style=flat-square) ![Coveralls github](https://img.shields.io/coveralls/github/chrisrink10/basilisp.svg?style=flat-square) ![license](https://img.shields.io/github/license/chrisrink10/basilisp.svg?style=flat-square)
8+
![PyPI](https://img.shields.io/pypi/v/basilisp.svg?style=flat-square) ![python](https://img.shields.io/pypi/pyversions/basilisp.svg?style=flat-square) ![CircleCI](https://img.shields.io/travis/chrisrink10/basilisp.svg?style=flat-square) ![Coveralls github](https://img.shields.io/coveralls/github/chrisrink10/basilisp.svg?style=flat-square) ![license](https://img.shields.io/github/license/chrisrink10/basilisp.svg?style=flat-square)
99

1010
## Getting Started
1111

tox.ini

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
[tox]
22
envlist = py36,py37,mypy,lint
33

4+
[travis]
5+
python =
6+
3.6: py36, coverage, lint
7+
48
[testenv]
59
deps =
610
six==1.10.0

0 commit comments

Comments
 (0)