File tree Expand file tree Collapse file tree 3 files changed +9
-8
lines changed Expand file tree Collapse file tree 3 files changed +9
-8
lines changed Original file line number Diff line number Diff line change 4545 python-version : 3.12
4646
4747 - run : |
48+ pip install -e .
4849 pip install -r scripts/populate_tox/requirements.txt
4950 pip install -r scripts/split_tox_gh_actions/requirements.txt
5051 python scripts/populate_tox/populate_tox.py --fail-on-changes
Original file line number Diff line number Diff line change 1- #! /bin/bash
1+ #! /bin/sh
22
33# This script generates tox.ini and CI YAML files in one go.
44
55set -xe
66
7- SCRIPT_DIR= " $( cd -- " $( dirname -- " $0 " ) " && pwd ) "
7+ cd " $( dirname " $0 " ) "
88
99python -m venv .venv
10- source .venv/bin/activate
10+ . .venv/bin/activate
1111
12- pip install -r " $SCRIPT_DIR /populate_tox/requirements.txt"
13- pip install -r " $SCRIPT_DIR /split_tox_gh_actions/requirements.txt"
12+ pip install -e ..
13+ pip install -r populate_tox/requirements.txt
14+ pip install -r split_tox_gh_actions/requirements.txt
1415
15- python " $SCRIPT_DIR / populate_tox/populate_tox.py"
16- python " $SCRIPT_DIR /scripts/ split_tox_gh_actions/split_tox_gh_actions.py"
16+ python populate_tox/populate_tox.py
17+ python split_tox_gh_actions/split_tox_gh_actions.py
Original file line number Diff line number Diff line change 11jinja2
22packaging
33requests
4- sentry_sdk
You can’t perform that action at this time.
0 commit comments