From b400a5429b14093b397df2d3a8a90de123949daf Mon Sep 17 00:00:00 2001 From: Scott Black Date: Mon, 3 May 2021 14:05:19 -0600 Subject: [PATCH] only test on ubuntu --- .github/workflows/python-package.yml | 2 +- Makefile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 3fdcd82..721d88b 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -15,7 +15,7 @@ jobs: strategy: matrix: python-version: [3.7] - platform: [ubuntu-latest, windows-latest] + platform: [ubuntu-latest] runs-on: ${{ matrix.platform }} diff --git a/Makefile b/Makefile index b41845a..e7dc507 100644 --- a/Makefile +++ b/Makefile @@ -21,8 +21,8 @@ docs-serve: .PHONY: test test: - pytest -n 2 tests + pytest -n 4 tests .PHONY: test-cov test-cov: - pytest -n 2 --cov=hsclient --cov-report html + pytest -n 4 --cov=hsclient --cov-report html