Skip to content

Commit

Permalink
Fix workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
SenZmaKi committed Feb 9, 2024
1 parent fcc0a77 commit 523faa8
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
poetry install
- name: Lint with ruff
run: ruff .
run: poetry run ruff .

- name: Run Tests
run: poe test
run: poetry run poe test_ddl
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ git clone https://github.com/SenZmaKi/Senpwai && cd Senpwai && pip install -r de
2. **Build the app into a binary.**

```
poe build_senpwai_binary
poetry run poe build_senpwai_binary
```

- The binary will be built in `Senpwai\build\Senpwai`
Expand Down
2 changes: 1 addition & 1 deletion docs/senpcli-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ git clone https://github.com/SenZmaKi/Senpwai && cd Senpwai && pip install -r de
2. **Build the tool into a binary.**

```
poe build_senpcli_binary
poetry run poe build_senpcli_binary
```

- The binary will be built in `Senpwai\build\Senpcli`
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ generate_release = [
{ ref = "install" },
]
generate_release_ddl = [
{ ref = "ddl_tests" },
{ ref = "test_ddl" },
{ ref = "build_binaries" },
{ ref = "compile_installers" },
{ ref = "install" },
Expand All @@ -81,7 +81,7 @@ test_gogo = [{ ref = "test_gogo_norm" }, { ref = "test_gogo_hls" }]
test_gogo_norm = "python -m senpwai.scrapers.test --site gogo all"
test_gogo_hls = "python -m senpwai.scrapers.test --site gogo all --hls"

ddl_tests = [{ ref = "test_pahe_ddl" }, { ref = "test_gogo_ddl" }]
test_ddl = [{ ref = "test_pahe_ddl" }, { ref = "test_gogo_ddl" }]
test_pahe_ddl = "python -m senpwai.scrapers.test --site pahe direct_links"
test_gogo_ddl = [{ ref = "test_gogo_norm_ddl" }, { ref = "test_gogo_hls_ddl" }]
test_gogo_norm_ddl = "python -m senpwai.scrapers.test --site gogo direct_links"
Expand Down

0 comments on commit 523faa8

Please sign in to comment.