File tree Expand file tree Collapse file tree 4 files changed +8
-6
lines changed Expand file tree Collapse file tree 4 files changed +8
-6
lines changed Original file line number Diff line number Diff line change 4646
4747 - run : |
4848 pip install -r scripts/populate_tox/requirements.txt
49- python scripts/populate_tox/populate_tox.py --fail-on-changes
5049 pip install -r scripts/split_tox_gh_actions/requirements.txt
50+ python scripts/populate_tox/populate_tox.py --fail-on-changes
5151 python scripts/split_tox_gh_actions/split_tox_gh_actions.py --fail-on-changes
5252
5353 build_lambda_layer :
Original file line number Diff line number Diff line change 44
55set -xe
66
7- SCRIPT_DIR=$( cd -- " $( dirname -- " ${BASH_SOURCE[0]} " ) " & > /dev/null && pwd )
7+ SCRIPT_DIR=" $( cd -- " $( dirname -- " $0 " ) " && pwd ) "
88
99python -m venv .venv
1010source .venv/bin/activate
1111
1212pip install -r " $SCRIPT_DIR /populate_tox/requirements.txt"
1313pip install -r " $SCRIPT_DIR /split_tox_gh_actions/requirements.txt"
1414
15- python scripts /populate_tox/populate_tox.py
16- python scripts/split_tox_gh_actions/split_tox_gh_actions.py
15+ python " $SCRIPT_DIR /populate_tox/populate_tox.py"
16+ python " $SCRIPT_DIR / scripts/split_tox_gh_actions/split_tox_gh_actions.py"
Original file line number Diff line number Diff line change 44
55import functools
66import hashlib
7+ import os
78import sys
89import time
910from bisect import bisect_left
1415from pathlib import Path
1516from typing import Optional , Union
1617
18+ sys .path .append (os .path .abspath (os .path .join (os .path .dirname (__file__ ), ".." )))
19+
1720import requests
1821from jinja2 import Environment , FileSystemLoader
19-
2022from sentry_sdk .integrations import _MIN_VERSIONS
2123
2224from config import TEST_SUITE_CONFIG
23- from scripts . split_tox_gh_actions .split_tox_gh_actions import GROUPS
25+ from split_tox_gh_actions .split_tox_gh_actions import GROUPS
2426
2527
2628# Only consider package versions going back this far
You can’t perform that action at this time.
0 commit comments