Skip to content

Commit

Permalink
Virtualenv
Browse files Browse the repository at this point in the history
  • Loading branch information
kszucs committed Aug 31, 2021
1 parent 0a81981 commit d5c6659
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,16 +78,19 @@ jobs:
with:
python-version: '3.7'
- name: Upgrade pip and setuptools
run: pip install --upgrade pip setuptools wheel
- name: Install python dependencies
run: pip install maturin==0.8.2 toml==0.10.1 pytest pytz
- name: Install nightly pyarrow wheel
run: pip install pyarrow>=5.0
run: pip install --upgrade pip setuptools wheel virtualenv
- name: Create virtualenv and install dependencies
run: |
virtualenv venv
source venv/bin/activate
pip install maturin toml pytest pytz pyarrow>=5.0
- name: Run tests
env:
CARGO_HOME: "/home/runner/.cargo"
CARGO_TARGET_DIR: "/home/runner/target"
working-directory: arrow-pyarrow-integration-testing
run: |
source venv/bin/activate
pushd arrow-pyarrow-integration-testing
maturin develop
pytest -v .
popd

0 comments on commit d5c6659

Please sign in to comment.