-
-
Notifications
You must be signed in to change notification settings - Fork 310
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
removed unused environments and workflows (#1651)
* removed unused environments and workflows * added v3 contributor guide * add shell
- Loading branch information
Showing
7 changed files
with
49 additions
and
178 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
# V3 Contributor Guide | ||
|
||
A bare-bones guide to contributing to V3. | ||
|
||
Developed for the Feb. 2024 Zarr Sprint. | ||
|
||
## Clone V3 branch | ||
|
||
[Fork](https://github.com/zarr-developers/zarr-python/fork) zarr-python and clone it locally. | ||
|
||
``` | ||
git clone {your remote} | ||
git remote add upstream https://github.com/zarr-developers/zarr-python | ||
git fetch upstream | ||
git checkout --track upstream/v3 | ||
``` | ||
|
||
## Set up your environment | ||
|
||
Zarr uses [hatch](https://hatch.pypa.io/) for its build system. | ||
|
||
``` | ||
mamba install hatch | ||
``` | ||
|
||
or | ||
|
||
``` | ||
pip install hatch | ||
``` | ||
|
||
Then | ||
|
||
``` | ||
hatch env create test | ||
``` | ||
|
||
## Run the Tests | ||
|
||
``` | ||
hatch run test:run | ||
``` | ||
|
||
or | ||
|
||
``` | ||
hatch -e test shell | ||
pytest -v | ||
``` |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.