From 3bd75b1554acc9c8f420ece1b7fa08aa1baea280 Mon Sep 17 00:00:00 2001 From: J08nY Date: Mon, 3 Jan 2022 20:56:26 +0100 Subject: Split workflow steps in test workflow. --- .github/workflows/tests.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to '.github/workflows/tests.yml') diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 5d2999ae..bbef1b7d 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -15,9 +15,10 @@ jobs: python-version: '3.8' - name: Install python dependencies run: pip install -r requirements.txt - - name: Install pytest and run tests + - name: Install pytest and package run: | pip install pytest pip install pytest-cov pip install ".[dev,test]" - pytest --cov sec_certs + - name: Run tests + run: pytest --cov sec_certs -- cgit v1.3.1