Skip to content

Commit

Permalink
rev
Browse files Browse the repository at this point in the history
  • Loading branch information
sbrugman committed Jul 16, 2023
1 parent 1ab612e commit c76781f
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ jobs:
runs-on: ubuntu-latest
needs: cargo-test
# Only runs on pull requests, since that is the only we way we can find the base version for comparison.
# if: github.event_name == 'pull_request'
if: github.event_name == 'pull_request'
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
Expand Down
16 changes: 12 additions & 4 deletions scripts/check_ecosystem.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,10 +106,18 @@ async def _get_commit(self: Self, checkout_dir: Path) -> str:


REPOSITORIES: list[Repository] = [
Repository("sdv-dev", "SDMetrics", "master", select="PD"),
Repository("google-research", "robustness_metrics", "master", select="PD"),
Repository("soft-matter", "trackpy", "master", select="PD"),
Repository("microsoft", "FLAML", "main", select="PD"),
Repository("apache", "airflow", "main", select="ALL"),
Repository("bokeh", "bokeh", "branch-3.2", select="ALL"),
Repository("pypa", "build", "main"),
Repository("pypa", "cibuildwheel", "main"),
Repository("pypa", "setuptools", "main"),
Repository("pypa", "pip", "main"),
Repository("python", "mypy", "master"),
Repository("DisnakeDev", "disnake", "master"),
Repository("scikit-build", "scikit-build", "main"),
Repository("scikit-build", "scikit-build-core", "main"),
Repository("python", "typeshed", "main", select="PYI"),
Repository("zulip", "zulip", "main", select="ALL"),
]

SUMMARY_LINE_RE = re.compile(r"^(Found \d+ error.*)|(.*potentially fixable with.*)$")
Expand Down

0 comments on commit c76781f

Please sign in to comment.