Skip to content

Commit aa3f5f1

Browse files
eacodegenbagel897
andauthored
fix oss parse tests (#19)
Co-authored-by: bagel897 <[email protected]>
1 parent 8252eb1 commit aa3f5f1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ jobs:
298298
command: |
299299
EXTRA_REPOS_ARG=""
300300
if [ "<<parameters.extra_repos>>" = "true" ]; then
301-
EXTRA_REPOS_ARG="--extra-repos"
301+
EXTRA_REPOS_ARG="--extra-repos=true"
302302
fi
303303
PYTEST_ARGS="${EXTRA_REPOS_ARG} --token ${CODEGEN_BOT_GHE_TOKEN} -o junit_suite_name=\"${CIRCLE_JOB}\" tests/codemod/test_parse.py"
304304
echo "Running tests with args: $PYTEST_ARGS"
@@ -402,7 +402,7 @@ workflows:
402402
branches:
403403
ignore: develop
404404
- parse-tests:
405-
name: Manual Parse Tests
405+
name: Manual-Parse-Tests
406406
filters:
407407
branches:
408408
ignore: develop

tests/codemod/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ def pytest_generate_tests(metafunc: Metafunc) -> None:
8989
scope="session",
9090
)
9191
case "test_codemods_parse":
92-
to_test = {name: repo for name, repo in repos.items() if repo.size == Size.Large or repo.repo_id is not None}
92+
to_test = {name: repo for name, repo in repos.items()}
9393
metafunc.parametrize(
9494
"repo",
9595
[pytest.param(repo, marks=pytest.mark.xdist_group(repo.name)) for repo in to_test.values()],

0 commit comments

Comments
 (0)