Skip to content

Modify Manifester class to work with MockStub #64

Modify Manifester class to work with MockStub

Modify Manifester class to work with MockStub #64

Workflow file for this run

name: "CodeQL"
on:
push:
branches: [master]
pull_request:
types: [opened, synchronize, reopened]
jobs:
analyze:
name: CodeQL Analysis
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10"]
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Initialize CodeQL
uses: github/codeql-action/init@v1
with:
languages: ${{ matrix.language }}
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Unit Tests
run: |
pip install -U pip
pip install -U .[test]
cp manifester_settings.yaml.example manifester_settings.yaml
manifester --help
# pytest -v tests/ --ignore tests/functional