Skip to content

Commit 7580494

Browse files
committed
fixed ci test flow commands
1 parent 5e42c0e commit 7580494

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/test_full.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Install Dependencies
2424
run: flit install --symlink
2525
- name: Test
26-
run: pytest tests
26+
run: pytest
2727

2828
codestyle:
2929
runs-on: ubuntu-latest
@@ -38,8 +38,8 @@ jobs:
3838
- name: Install Dependencies
3939
run: flit install --symlink
4040
- name: Black
41-
run: black --check ellar tests
41+
run: black --check ellar tests examples
4242
- name: Ruff Linting Check
43-
run: ruff check ellar tests
43+
run: ruff check ellar tests examples
4444
- name: mypy
4545
run: mypy ellar

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ test: ## Run tests
3030
pytest
3131

3232
test-cov: ## Run tests with coverage
33-
pytest --cov=ellar --cov-report term-missing tests
33+
pytest --cov=ellar --cov-report term-missing
3434

3535
doc-deploy: ## Run Deploy Documentation
3636
make clean

0 commit comments

Comments
 (0)