Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions circle.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
dependencies:
pre:
- pyenv shell 2.7.10; $(pyenv which pip) install --upgrade pip
- pyenv shell 3.3.3; $(pyenv which pip) install --upgrade pip
- pyenv shell 3.4.2; $(pyenv which pip) install --upgrade pip
- pyenv shell 2.7.10; $(pyenv which pip) install --upgrade pip setuptools
- pyenv shell 3.3.3; $(pyenv which pip) install --upgrade pip setuptools
- pyenv shell 3.4.2; $(pyenv which pip) install --upgrade pip setuptools

- pyenv shell 2.7.10; $(pyenv which pip) install -r test-requirements.txt
- pyenv shell 3.3.3; $(pyenv which pip) install -r test-requirements.txt
- pyenv shell 3.4.2; $(pyenv which pip) install -r test-requirements.txt

- pyenv shell 2.7.10; $(pyenv which pip) install -r twisted-requirements.txt
- pyenv shell 3.3.3; $(pyenv which pip) install -r twisted-requirements.txt
- pyenv shell 3.4.2; $(pyenv which pip) install -r twisted-requirements.txt

- pyenv shell 2.7.10; $(pyenv which python) setup.py install
- pyenv shell 3.3.3; $(pyenv which python) setup.py install
- pyenv shell 3.4.2; $(pyenv which python) setup.py install
Expand Down