Skip to content

Commit

Permalink
docs: updates contributing and Makefile with updated targets
Browse files Browse the repository at this point in the history
Signed-off-by: Jennifer Power <[email protected]>
  • Loading branch information
jpower432 committed Oct 20, 2023
1 parent b2e48bf commit f45a053
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,4 +66,4 @@ jobs:
python-version: ${{ matrix.python-version }}

- name: Run tests
run: make test
run: make test
3 changes: 1 addition & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,9 @@ make lint
```bash
# Run all tests
make test
make test-slow

# Run specific tests
make test-unit
make test-integration
make test-e2e
```

Expand Down
3 changes: 1 addition & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
PYMODULE := trestlebot
INTEGRATION := integration
E2E := e2e
TESTS := tests

Expand Down Expand Up @@ -34,7 +33,7 @@ test:

test-slow:
@poetry run pytest --slow --cov --cov-config=pyproject.toml --cov-report=xml
.PHONY: test-unit
.PHONY: test-slow

test-e2e:
@poetry run pytest $(TESTS)/$(E2E) --slow --cov --cov-config=pyproject.toml --cov-report=xml
Expand Down

0 comments on commit f45a053

Please sign in to comment.