-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore(ci): use `pipenv` cache * chore(ci): use single quotes * chore(ci): remove patch number in python version * chore(ci): disable concurrent jobs * chore(ci): install pipenv before installing pip deps * chore(ci): run pytest via pipenv * chore(ci): set `DISPLAY` env var * fix(py): correct chromedriver path * chore(py): revert chrome driver changes * chore(deps): upgrade nw * fix(test): findpath * chore(test): skip puppeteer tests * Revert "chore(test): skip puppeteer tests" This reverts commit 562bb5c. * fix(test): findpath * fix(ci): file path name * fix(test): fix python test * fix(py): windows does not support glob patterns; * fix(test): jsdoc? * chore(ci): disable ubuntu runner * chore: pipenv -> pip * fix(ci): update py commands * chore(test): skip puppeteer test * chore(test): timeout * hope
- Loading branch information
1 parent
40fed31
commit 0ea0e8e
Showing
13 changed files
with
126 additions
and
266 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,11 +8,18 @@ on: | |
branches: | ||
- main | ||
|
||
concurrency: | ||
group: ${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
test: | ||
strategy: | ||
matrix: | ||
os: [macos-12, ubuntu-22.04, windows-2022] | ||
os: | ||
- macos-12 | ||
- ubuntu-22.04 | ||
- windows-2022 | ||
fail-fast: false | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
|
@@ -27,13 +34,13 @@ jobs: | |
- name: Setup Python | ||
uses: actions/[email protected] | ||
with: | ||
python-version: "3.10.0" | ||
python-version: '3.10' | ||
cache: pip | ||
- name: Install Node dependencies | ||
run: npm ci | ||
- name: Run Node tests | ||
run: npm t | ||
- name: Install Python dependencies | ||
run: python3 -m pipenv install | ||
- name: Install Pip dependencies | ||
run: python3 -m pip install -r requirements.txt | ||
- name: Run Python tests | ||
run: python3 -m pytest ./py/selenium/builder/*.py | ||
run: python3 -m pytest ./py/selenium/service_builder/test.py |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.