Skip to content

Commit

Permalink
update cwltool/schema-salad setup to be more resilient (#90)
Browse files Browse the repository at this point in the history
`expected_mypy_success=True` as well
  • Loading branch information
mr-c authored Nov 29, 2023
1 parent b22bd76 commit b75d4ba
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions mypy_primer/projects.py
Original file line number Diff line number Diff line change
Expand Up @@ -698,18 +698,19 @@ def get_projects() -> list[Project]:
location="https://github.com/common-workflow-language/schema_salad",
mypy_cmd="MYPYPATH=$MYPYPATH:mypy-stubs {mypy} schema_salad",
pip_cmd=(
"{pip} install types-pkg_resources types-requests types-dataclasses"
" types-setuptools black pytest ruamel.yaml"
"{pip} install $(grep -v mypy mypy-requirements.txt) -r test-requirements.txt"
" -rrequirements.txt"
),
expected_mypy_success=True,
supported_platforms=["linux", "darwin"],
),
Project(
location="https://github.com/common-workflow-language/cwltool",
mypy_cmd="MYPYPATH=$MYPYPATH:mypy-stubs {mypy} cwltool/*.py tests/*.py",
pip_cmd=(
"{pip} install types-requests types-setuptools types-psutil types-mock cwl-utils"
" schema-salad ruamel-yaml pytest pytest-httpserver"
),
mypy_cmd="MYPYPATH=$MYPYPATH:mypy-stubs {mypy} cwltool tests/*.py setup.py",
pip_cmd="{pip} install $(grep -v mypy mypy-requirements.txt) -r test-requirements.txt",
expected_mypy_success=True,
mypy_cost=20,
supported_platforms=["linux", "darwin"],
),
Project(
location="https://github.com/FasterSpeeding/Tanjun",
Expand Down

0 comments on commit b75d4ba

Please sign in to comment.