-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
17 additions
and
12 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 |
---|---|---|
|
@@ -30,16 +30,18 @@ jobs: | |
python-version: ${{ matrix.python }} | ||
env: | ||
PYTHON_VERSION: ${{ matrix.python }} | ||
- name: Add msbuild to PATH | ||
if: matrix.os == 'windows-latest' | ||
uses: microsoft/[email protected] | ||
- name: Install Dependencies | ||
run: | | ||
npm install | ||
- name: Lint JavaScript | ||
- name: Lint with standard | ||
if: matrix.os == 'ubuntu-latest' | ||
run: | | ||
npm run lint | ||
- name: Run JavaScript Tests | ||
- name: Test with tap (Linux and macOS) | ||
if: matrix.os != 'windows-latest' | ||
run: | | ||
npm test | ||
- name: Test with tap (Windows) | ||
if: matrix.os == 'windows-latest' | ||
run: | | ||
GYP_MSVS_VERSION=2015 GYP_MSVS_OVERRIDE_PATH="C:\\Dummy" npm test |
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# TODO: Line 15, enable python-version: 3.5 | ||
# TODO: Line 36, enable pytest --doctest-modules | ||
# TODO: Line 21, enable python-version: 3.5 | ||
# TODO: Line 50, enable pytest --doctest-modules | ||
|
||
name: Python Tests | ||
|
||
|
@@ -18,17 +18,14 @@ jobs: | |
fail-fast: false | ||
max-parallel: 15 | ||
matrix: | ||
python-version: [3.6, 3.7, 3.8] | ||
os: [macos-latest, ubuntu-latest, windows-latest] | ||
python-version: [3.6, 3.7, 3.8] | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v1 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Add msbuild to PATH | ||
if: matrix.os == 'windows-latest' | ||
uses: microsoft/[email protected] | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
|
@@ -40,9 +37,15 @@ jobs: | |
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics | ||
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide | ||
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics | ||
- name: Test with pytest | ||
- name: Test with pytest (Linux and macOS) | ||
if: matrix.os != 'windows-latest' | ||
shell: bash | ||
run: | | ||
python -m pytest | ||
- name: Test with pytest (Windows) | ||
if: matrix.os == 'windows-latest' | ||
shell: bash | ||
run: | | ||
GYP_MSVS_VERSION=2015 GYP_MSVS_OVERRIDE_PATH="C:\\Dummy" python -m pytest | ||
# - name: Run doctests with pytest | ||
# run: pytest --doctest-modules |