From 0f9ed450e17eabd59feba58de0b2a11912ccacb3 Mon Sep 17 00:00:00 2001 From: debugtalk Date: Fri, 13 Dec 2019 18:32:54 +0800 Subject: [PATCH] Create unittest.yml add github action for unittest. --- .github/workflows/unittest.yml | 39 ++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 .github/workflows/unittest.yml diff --git a/.github/workflows/unittest.yml b/.github/workflows/unittest.yml new file mode 100644 index 00000000..af9d207c --- /dev/null +++ b/.github/workflows/unittest.yml @@ -0,0 +1,39 @@ +name: Python package + +on: [push] + +jobs: + build: + + runs-on: ubuntu-latest + strategy: + max-parallel: 5 + matrix: + python-version: [2.7, 3.5, 3.6, 3.7, 3.8] + + steps: + - uses: actions/checkout@v1 + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v1 + with: + python-version: ${{ matrix.python-version }} + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install poetry + poetry --version + poetry install -vvv + - name: Test package installation + run: | + poetry build + ls dist/*.whl | xargs pip install # test installation + hrun -V + - name: Smoketest for hrun command + run: | + cd tests/httpbin && hrun basic.yml --log-level debug --failfast && cd - + - name: Smoketest for hrun command + run: | + python -m httprunner.cli hrun -V + python -m httprunner.cli hrun -h + poetry run coverage run --source=httprunner -m unittest discover + poetry run coveralls