File: conda.sh

package info (click to toggle)
python-pluggy 1.6.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 476 kB
  • sloc: python: 3,344; sh: 58; makefile: 6
file content (12 lines) | stat: -rwxr-xr-x 255 bytes parent folder | download | duplicates (15)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env bash
set -eux -o pipefail
if [[ ! -d conda ]]; then
    git clone https://github.com/conda/conda
fi
pushd conda && trap popd EXIT
git pull
set +eu
source dev/start
set -eu
pip install -e ../../
pytest -m "not integration and not installed"