Skip to content

Commit

Permalink
remove dev-requirements.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
blink1073 committed Apr 13, 2022
1 parent 9ed111f commit f665c64
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
- with: jupyterlab/maintainer-tools/.github/actions/base-action@v1
- name: Install dependencies
run: |
pip install -r dev-requirements.txt .
pip install -e ".[test]"
- name: Test with pytest
run: |
python -m pytest -vv jupyter_core --timeout 60 --cov jupyter_core --cov-report term-missing:skip-covered
Expand Down
1 change: 0 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
include COPYING.md
include CONTRIBUTING.md
include README.md
include dev-requirements.txt
include jupyter_core/py.typed

exclude .pre-commit-config.yaml
Expand Down
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,7 @@ Now create an [editable install](https://pip.pypa.io/en/stable/reference/pip_ins
and download the dependencies of code and test suite by executing:

cd /my/projects/jupyter_core/
pip install -e .
pip install -r dev-requirements.txt
pip install -e ".[test]"
py.test

The last command runs the test suite to verify the setup. During development, you can pass filenames to `py.test`, and it will execute only those tests.
Expand Down
5 changes: 0 additions & 5 deletions dev-requirements.txt

This file was deleted.

2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ console_scripts =

[options.extras_require]
test =
ipykernel
pre-commit
pytest
pytest-cov
pytest-timeout
Expand Down

0 comments on commit f665c64

Please sign in to comment.