# This workflow will install Python dependencies, run tests and lint with a single version of Python. # For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions name: Regression tests on: push: paths: - '**.py' - 'src/kibot' - 'tests/**' - '.github/workflows/pythonapp.yml' - 'tools/dev_image/Dockerfile' - 'tools/dev_image_k6/Dockerfile' pull_request: paths: - '**.py' - 'src/kibot' - 'tests/**' - '.github/workflows/pythonapp.yml' - 'tools/dev_image/Dockerfile' - 'tools/dev_image_k6/Dockerfile' repository_dispatch: types: [run_tests] jobs: test: strategy: matrix: ki_release: [latest, ki6] runs-on: ubuntu-latest container: setsoft/kicad_auto_test:${{ matrix.ki_release }} steps: - uses: actions/checkout@v2 with: submodules: recursive - name: Lint with flake8 run: | # stop the build if there are Python syntax errors or undefined names flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics # exit-zero treats all errors as warnings. flake8 . --count --exit-zero --statistics - name: Test ${{ matrix.ki_release }} run: | rm -rf output_fast rm -rf output_slow rm -f tests/.local mkdir output_fast mkdir output_slow echo pwd pwd ls -la echo ----------------- pip3 install --upgrade pytest pip3 install --upgrade pytest-xdist python3-coverage erase # Create the caches with macros python3-coverage run src/kibot --help-outputs > /dev/null # Individual run for specific tests # pytest --log-cli-level debug -k "test_ibom_parse_fail" --test_dir=output_fast # Run the 90% faster tests (under 3 s) # Do it in parallel pytest -v --durations=0 -m "not slow" -n 2 --test_dir=output_fast echo ----------------- ls -la ls -lad output_fast ls -la output_fast echo ----------------- # Run the slowest at the end and exit on the first error pytest -v --durations=0 -m slow -x --test_dir=output_slow echo ----------------- ls -la ls -lad output_slow ls -la output_slow echo ----------------- python3-coverage combine python3-coverage report python3-coverage html -d output/htmlcov - name: Store results if: ${{ always() }} uses: actions/upload-artifact@v1 with: name: Test_Output_${{ matrix.ki_release }} path: | output_fast output_slow - name: Upload Coverage env: COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} COVERALLS_FLAG_NAME: ${{ matrix.ki_release }} COVERALLS_PARALLEL: true GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | # apt-get update # apt-get -y install python3-pip # pip3 install coveralls #coveralls --service=github #echo Disabled by now coveralls push_to_registry: name: Push Docker image to Docker Hub runs-on: ubuntu-latest needs: test steps: - name: Check out the repo uses: actions/checkout@v2 - name: Log in to Docker Hub uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9 with: username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_PASSWORD }} - name: Extract metadata (tags, labels) for Docker id: meta uses: docker/metadata-action@98669ae865ea3cffbcbaa878cf57c20bbf1c6c38 with: images: setsoft/kicad_auto - name: Build and push Docker image uses: docker/build-push-action@ad44023a93711e3deb337508980b4b5e9bcdc5dc with: context: tools/dev_image push: true tags: setsoft/kicad_auto:dev labels: ${{ steps.meta.outputs.labels }} push_to_registry_k6: name: Push Docker image to Docker Hub (KiCad 6) runs-on: ubuntu-latest needs: test steps: - name: Check out the repo uses: actions/checkout@v2 - name: Log in to Docker Hub uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9 with: username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_PASSWORD }} - name: Extract metadata (tags, labels) for Docker id: meta uses: docker/metadata-action@98669ae865ea3cffbcbaa878cf57c20bbf1c6c38 with: images: setsoft/kicad_auto - name: Build and push Docker image uses: docker/build-push-action@ad44023a93711e3deb337508980b4b5e9bcdc5dc with: context: tools/dev_image_k6 push: true tags: setsoft/kicad_auto:dev_k6 labels: ${{ steps.meta.outputs.labels }} coveralls: name: Finish Coveralls needs: test runs-on: ubuntu-latest steps: - name: Finished env: COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} run: | curl -k https://coveralls.io/webhook?repo_token=$COVERALLS_REPO_TOKEN -d "payload[build_num]="$GITHUB_RUN_ID"&payload[status]=done"