mirror of
https://github.com/NomaDamas/k-skill.git
synced 2026-06-24 02:04:11 +00:00
ci: install beautifulsoup4 so danawa price search tests can import bs4
The new scripts/test_danawa_price_search.py imports danawa_search.py, which requires beautifulsoup4. CI only runs npm ci, so the bs4 import fails with 'beautifulsoup4 is required: python -m pip install beautifulsoup4' and the validate job exits with code 1. Install beautifulsoup4 via pip before running npm run ci so the Python test suite can import danawa_search and run the new payment badge regression tests.
This commit is contained in:
parent
945bd32296
commit
8330e5adf7
1 changed files with 3 additions and 0 deletions
3
.github/workflows/ci.yml
vendored
3
.github/workflows/ci.yml
vendored
|
|
@ -17,5 +17,8 @@ jobs:
|
|||
node-version: 20
|
||||
cache: npm
|
||||
|
||||
- name: Install Python test dependencies
|
||||
run: python3 -m pip install --user beautifulsoup4
|
||||
|
||||
- run: npm ci
|
||||
- run: npm run ci
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue