Skip to content

Commit

Permalink
Merge pull request #2 from chriskuehl/travis
Browse files Browse the repository at this point in the history
Add Travis and Coveralls
  • Loading branch information
chriskuehl committed Jun 2, 2018
2 parents 8023f01 + aa0051b commit 8f2abec
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 1 deletion.
16 changes: 16 additions & 0 deletions .travis.yml
@@ -0,0 +1,16 @@
sudo: required
language: python
matrix:
include:
- env: TOXENV=py27
- env: TOXENV=py36
python: 3.6
install:
- sudo apt-get install -y --no-install-recommends zsh
- pip install coveralls tox
script: tox
after_success: coveralls
cache:
directories:
- $HOME/.cache/pip
- $HOME/.cache/pre-commit
2 changes: 2 additions & 0 deletions README.md
@@ -1,6 +1,8 @@
rustenv
==========

[![Build Status](https://travis-ci.org/chriskuehl/rustenv.svg?branch=master)](https://travis-ci.org/chriskuehl/rustenv)
[![Coverage Status](https://coveralls.io/repos/github/chriskuehl/rustenv/badge.svg?branch=master)](https://coveralls.io/github/chriskuehl/rustenv?branch=master)
[![PyPI version](https://badge.fury.io/py/rustenv.svg)](https://pypi.org/project/rustenv/)

Create virtual, activate-able environments for Rust, similar to `virtualenv`
Expand Down
2 changes: 1 addition & 1 deletion tests/integration_test.py
Expand Up @@ -12,7 +12,7 @@


TEST_SCRIPT = '''\
set -euo pipefail
set -eu
RUSTENV='{RUSTENV}'
PATH=/bin:/usr/bin
Expand Down

0 comments on commit 8f2abec

Please sign in to comment.