Skip to content
This repository has been archived by the owner on Feb 21, 2022. It is now read-only.

Commit

Permalink
Tidy p2/py3 testing for pipelines.
Browse files Browse the repository at this point in the history
  • Loading branch information
garth-wells committed Oct 4, 2016
1 parent 70f0996 commit bc8ca08
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions bitbucket-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,16 @@ pipelines:
- step:
script:
- apt-get update
- apt-get install -y git python-minimal python-pip python-pytest python-setuptools python-wheel --no-install-recommends
- apt-get install -y python3-minimal python3-pip python3-pytest python3-setuptools python3-wheel --no-install-recommends
- pip install flake8 flake8-future-import
- apt-get install -y
git
python-minimal python-pip python-pytest python-setuptools python-wheel
python3-minimal python3-pip python3-pytest python3-setuptools python3-wheel
--no-install-recommends
- pip2 install flake8 flake8-future-import
- pip3 install flake8 flake8-future-import
- pip install .
- pip2 install .
- pip3 install .
- DATA_REPO_GIT="" py.test -v test/
- DATA_REPO_GIT="" py.test-3 -v test/
- python -m flake8
- DATA_REPO_GIT="" python2 -m pytest -v test/
- DATA_REPO_GIT="" python3 -m pytest -v test/
- python2 -m flake8
- python3 -m flake8

0 comments on commit bc8ca08

Please sign in to comment.