Skip to content

Commit

Permalink
Wrong location for installing packages
Browse files Browse the repository at this point in the history
  • Loading branch information
martinburchell committed May 26, 2022
1 parent 2e4803d commit dbc996e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions github_action_scripts/python_checks.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ python -m venv venv
python -VV
python -m site
python -m pip install -U pip
echo dumping pre-installed packages
echo "dumping pre-installed packages"
python -m pip freeze
echo installing pip packages
echo "installing pip packages"
cd "$env:GITHUB_WORKSPACE"
python -m pip install -e .
echo running tests
echo "running tests"
$env:CRATE_RUN_WITHOUT_LOCAL_SETTINGS = "True"
$env:CRATE_ANON_CONFIG = "$env:USERPROFILE\crate_anon_config.ini"
crate_anon_demo_config > "$env:CRATE_ANON_CONFIG"
cd "$env:GITHUB_WORKSPACE"
pytest -v

0 comments on commit dbc996e

Please sign in to comment.