Skip to content

Add a test to assert on /etc/machine-id permissions for AWS #1465

Add a test to assert on /etc/machine-id permissions for AWS

Add a test to assert on /etc/machine-id permissions for AWS #1465

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