Skip to content

Fixed test_networkmanager_conf_plugins #1445

Fixed test_networkmanager_conf_plugins

Fixed test_networkmanager_conf_plugins #1445

Workflow file for this run

name: Basic Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Python 3
uses: actions/setup-python@v1
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run unit tests
run: pytest test/
- name: Get code coverage
run: pytest --cov-report term-missing --cov=cloud/terraform --cov=result/ --cov=main/ --cov=test_suite/ test/
- name: Python linter
run: flake8 --ignore=E501