Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,12 @@ jobs:
cargo run --manifest-path example_projects/frozen_stdlib/Cargo.toml
if: runner.os == 'Linux'

- name: run update_lib tests
run: cargo run -- -m unittest discover -s scripts/update_lib/tests -v
env:
PYTHONPATH: scripts
if: runner.os == 'Linux'

- name: prepare Intel MacOS build
uses: dtolnay/rust-toolchain@stable
with:
Expand Down Expand Up @@ -463,11 +469,6 @@ jobs:

- run: ruff format --check

- name: run update_lib tests
run: cargo run -- -m unittest discover -s scripts/update_lib/tests -v
env:
PYTHONPATH: scripts

- name: install prettier
run: yarn global add prettier && echo "$(yarn global bin)" >>$GITHUB_PATH

Expand Down
8 changes: 0 additions & 8 deletions .github/workflows/lib-deps-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -99,19 +99,11 @@ jobs:

The following Lib/ modules were modified. Here are their dependencies:

<details>
<summary>Click to expand dependency information</summary>

```
${{ steps.deps-check.outputs.deps_output }}
```

</details>

**Legend:**
- `[+]` path exists in CPython
- `[x]` up-to-date, `[ ]` outdated
- `native:` Rust/C extension modules

- name: Remove comment if no Lib changes
if: steps.changed-files.outputs.modules == ''
Expand Down
1 change: 1 addition & 0 deletions scripts/update_lib/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.cache/
Loading