Skip to content

Commit

Permalink
github: remove test-requirements.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
aconchillo committed Jan 20, 2025
1 parent e3d53d3 commit fe84bb9
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 31 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ jobs:
run: |
source .venv/bin/activate
python -m pip install --upgrade pip
pip install -r dev-requirements.txt -r test-requirements.txt
pip install -r dev-requirements.txt
pip install ".[all]"
- name: Test with pytest
run: |
source .venv/bin/activate
Expand Down
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,13 @@ pip install "path_to_this_repo[option,...]"

### Running tests

From the root directory, run:
Make sure you have all the dependencies installed:

```shell
pip install --editable ".[all]"
```

Then, from the root directory, run:

```shell
pytest --doctest-modules --ignore-glob="*to_be_updated*" --ignore-glob=*pipeline_source* src tests
Expand Down
29 changes: 0 additions & 29 deletions test-requirements.txt

This file was deleted.

0 comments on commit fe84bb9

Please sign in to comment.