From 7855f9c93f415fa944a19d02f46d813908fa6c98 Mon Sep 17 00:00:00 2001 From: Lex Berezhny Date: Sat, 6 Jun 2020 20:02:31 -0400 Subject: [PATCH] sans unit tests --- .github/workflows/main.yml | 64 +++++++++++++++++++------------------- 1 file changed, 32 insertions(+), 32 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a1a2a5225..cd338ab6a 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -21,38 +21,38 @@ jobs: pip install -e .[lint] - run: make lint - tests-unit: - name: "tests / unit" - strategy: - matrix: - os: - - ubuntu-latest - - macos-latest - - windows-latest - runs-on: ${{ matrix.os }} - steps: - - uses: actions/checkout@v1 - - uses: actions/setup-python@v1 - with: - python-version: '3.7' - - name: set pip cache dir - id: pip-cache - run: echo "::set-output name=dir::$(pip cache dir)" - - name: extract pip cache - uses: actions/cache@v2 - with: - path: ${{ steps.pip-cache.outputs.dir }} - key: ${{ runner.os }}-pip-${{ hashFiles('setup.py') }} - restore-keys: ${{ runner.os }}-pip- - - run: | - pip install --user --upgrade pip wheel - pip install -e .[test] - - env: - HOME: /tmp - run: coverage run -m unittest -vv tests.unit.test_conf -# run: coverage run -m unittest discover -vv tests.unit - - if: startsWith(runner.os, 'linux') || startsWith(runner.os, 'mac') - run: bash <(curl -s https://codecov.io/bash) -X gcov -F unit,${{ runner.os }} +# tests-unit: +# name: "tests / unit" +# strategy: +# matrix: +# os: +# - ubuntu-latest +# - macos-latest +# - windows-latest +# runs-on: ${{ matrix.os }} +# steps: +# - uses: actions/checkout@v1 +# - uses: actions/setup-python@v1 +# with: +# python-version: '3.7' +# - name: set pip cache dir +# id: pip-cache +# run: echo "::set-output name=dir::$(pip cache dir)" +# - name: extract pip cache +# uses: actions/cache@v2 +# with: +# path: ${{ steps.pip-cache.outputs.dir }} +# key: ${{ runner.os }}-pip-${{ hashFiles('setup.py') }} +# restore-keys: ${{ runner.os }}-pip- +# - run: | +# pip install --user --upgrade pip wheel +# pip install -e .[test] +# - env: +# HOME: /tmp +# run: coverage run -m unittest -vv tests.unit.test_conf +## run: coverage run -m unittest discover -vv tests.unit +# - if: startsWith(runner.os, 'linux') || startsWith(runner.os, 'mac') +# run: bash <(curl -s https://codecov.io/bash) -X gcov -F unit,${{ runner.os }} tests-integration: name: "tests / integration"