Skip to content

Commit 1dcd7ae

Browse files
committedJul 18, 2023
Remove references to downloading test resources
1 parent 7ac3d9e commit 1dcd7ae

5 files changed

+2
-129
lines changed
 

‎.gitignore

-3
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,6 @@ coverage.xml
5050
.hypothesis/
5151
.pytest_cache/
5252

53-
# Unit test files
54-
bioio/tests/resources/
55-
5653
# Translations
5754
*.mo
5855
*.pot

‎CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Ready to contribute? Here's how to set up `bioio` for local development.
2525

2626
```bash
2727
cd bioio/
28-
just setup-dev
28+
just install
2929
```
3030

3131
4. Create a branch for local development:

‎Justfile

+1-6
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ clean:
2323
# install with all deps
2424
install:
2525
pip install -e .[lint,test,docs,dev]
26+
pre-commit install
2627

2728
# lint, format, and check all files
2829
lint:
@@ -37,12 +38,6 @@ build:
3738
just lint
3839
just test
3940

40-
# install dependencies, setup pre-commit, download test resources
41-
setup-dev:
42-
just install
43-
pre-commit install
44-
python scripts/download_test_resources.py
45-
4641
# generate Sphinx HTML documentation
4742
generate-docs:
4843
rm -f docs/bioio*.rst

‎scripts/TEST_RESOURCES_HASH.txt

-1
This file was deleted.

‎scripts/download_test_resources.py

-118
This file was deleted.

0 commit comments

Comments
 (0)
Please sign in to comment.