Skip to content

Commit

Permalink
Merge branch 'new_k8s' of github.com:grycap/im into new_k8s
Browse files Browse the repository at this point in the history
  • Loading branch information
micafer committed Feb 14, 2024
2 parents 28bb316 + 8ba39fb commit 85f846a
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 3 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Test IM

on:
push:
branches: ["master"]
pull_request:
branches: ["master"]

jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Check out the codebase.
uses: actions/checkout@v4

- name: Set up Python 3.
uses: actions/setup-python@v5
with:
python-version: '3.10'

- name: Install dependencies
run: python -m pip install -r requirements-tests.txt

- name: Check code style
run: pycodestyle --max-line-length=120 --ignore=E402,W504,W605,E722 . --exclude=doc

- name: Test with nose
#run: nosetests test/unit/connectors/*.py test/unit/*.py test/functional/*.py -v --stop --with-xunit --with-coverage --cover-erase --cover-xml --cover-package=IM,contextualization
run: python -m coverage run --source=. -m unittest discover -s test/unit -p '*.py'

- name: Generate XML coverage report
run: python -m coverage xml

- name: Report coverage
uses: codacy/codacy-coverage-reporter-action@v1
with:
project-token: ${{ secrets.CODACY_PROJECT_TOKEN }}
coverage-reports: coverage.xml
6 changes: 3 additions & 3 deletions requirements-tests.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
ansible >= 2.4
ansible-base
paramiko >= 1.14
PyYAML
cheroot
Expand All @@ -11,7 +12,7 @@ requests >= 2.19
scp
tosca-parser
defusedxml
urllib3>=1.23
urllib3>=1.23,<2.0
pycodestyle
suds-py3
xmltodict
Expand All @@ -31,7 +32,6 @@ pyVmomi
hvac
psutil
scar
nose
mock
coverage
requests-cache
requests-cache

0 comments on commit 85f846a

Please sign in to comment.