Skip to content

Commit

Permalink
Revert test:ci
Browse files Browse the repository at this point in the history
  • Loading branch information
imatlopez committed Sep 1, 2020
1 parent 112cff0 commit 80aa6c4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 8 deletions.
8 changes: 2 additions & 6 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,6 @@ jobs:
run: |
npm install --no-progress
pip install flake8 pytest
- name: Lint node
if: matrix.os == 'ubuntu-latest'
run: |
npm run lint
- name: Lint python
if: matrix.os == 'ubuntu-latest'
run: |
Expand All @@ -51,7 +47,7 @@ jobs:
- name: Run node tests (Linux and macOS)
if: matrix.os != 'windows-latest'
run: |
npm run test:ci
npm test
- name: Run python tests (Linux and macOS)
if: matrix.os != 'windows-latest'
run: |
Expand All @@ -60,7 +56,7 @@ jobs:
if: matrix.os == 'windows-latest'
shell: bash
run: |
GYP_MSVS_VERSION=2015 GYP_MSVS_OVERRIDE_PATH="C:\\Dummy" npm run test:ci
GYP_MSVS_VERSION=2015 GYP_MSVS_OVERRIDE_PATH="C:\\Dummy" npm test
- name: Run python tests (Windows)
if: matrix.os == 'windows-latest'
shell: bash
Expand Down
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@
},
"scripts": {
"lint": "standard */*.js test/**/*.js",
"test": "npm run lint && npm run test:ci",
"test:ci": "tap --timeout=120 test/test-*"
"test": "npm run lint && tap --timeout=120 test/test-*"
}
}

0 comments on commit 80aa6c4

Please sign in to comment.