Skip to content
Open
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
4 changes: 4 additions & 0 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,10 @@ jobs:
pip install -e .[test_full]
pytest -v

- name: Run Stub Tests
shell: bash -l {0}
run: stubtest fsspec.spec

win:
name: pytest-win
runs-on: windows-2022
Expand Down
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,11 @@ run and corresponding environment file run a set of tests from the dask
test suite, and very minimal tests against pandas and zarr from the
test_downstream.py module in this repo.

### Type Hints

fsspec uses type stub files for type hints instead of inline hints. Use ``stubtest <module>``
to verify if type stubs are in sync with implementation.

### Code Formatting

fsspec uses [Black](https://black.readthedocs.io/en/stable) to ensure
Expand Down
Loading