Skip to content

Commit 8a016d0

Browse files
try running tests in parallel
1 parent 2a8b5a1 commit 8a016d0

2 files changed

Lines changed: 5 additions & 2 deletions

File tree

.circleci/config.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
version: 2.1
22
jobs:
33
build:
4+
parallelism: 2
45
docker:
56
- image: 218546966473.dkr.ecr.us-east-1.amazonaws.com/circle-ci:stitch-tap-tester-uv
67
steps:
@@ -45,7 +46,9 @@ jobs:
4546
uv pip install --upgrade awscli
4647
aws s3 cp s3://com-stitchdata-dev-deployment-assets/environments/tap-tester/tap_tester_sandbox dev_env.sh
4748
source dev_env.sh
48-
run-test --tap=tap-circle-ci tests
49+
TESTFILES=$(circleci tests glob "tests/test_*.py" | circleci tests split --split-by=filesize)
50+
echo "Running on this node: $TESTFILES"
51+
run-test --tap=tap-circle-ci $TESTFILES
4952
5053
workflows:
5154
version: 2

tests/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ def get_credentials(self):
165165
def get_properties(self, original: bool = True):
166166
"""Configuration of properties required for the tap."""
167167
return_value = {
168-
"start_date": "2026-05-01T00:00:00Z",
168+
"start_date": "2026-06-16T00:00:00Z",
169169
"project_slugs": os.getenv("TAP_CIRCLE_CI_PROJECTS"),
170170
}
171171
if original:

0 commit comments

Comments
 (0)