Skip to content

Commit 5524412

Browse files
committed
path fixes
1 parent 975862c commit 5524412

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ jobs:
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

scripts/generate-test-files.sh

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
1-
#!/bin/bash
1+
#!/bin/sh
22

33
# This script generates tox.ini and CI YAML files in one go.
44

55
set -xe
66

7-
SCRIPT_DIR="$( cd -- "$( dirname -- "$0" )" && pwd )"
7+
cd "$(dirname "$0")"
88

99
python -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
Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
jinja2
22
packaging
33
requests
4-
sentry_sdk

0 commit comments

Comments
 (0)