-
Notifications
You must be signed in to change notification settings - Fork 8
37 lines (35 loc) · 1.26 KB
/
pylint.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: python
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
run: |
git submodule sync --recursive
git submodule update --init --recursive --jobs=4
python -m pip install --upgrade pip
pip install nomad-lab==1.1.3 --extra-index-url https://gitlab.mpcdf.mpg.de/api/v4/projects/2187/packages/pypi/simple
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
pip install astroid==2.5.1
- name: Install package
run: |
python -m pip install .
- name: pycodestyle
run: |
python -m pycodestyle --ignore=E501,E701,E731 nexusparser tests --exclude=nexusparser/definitions
- name: pylint
run: |
python -m pylint --load-plugins=pylint_mongoengine,nomad.metainfo.pylint_plugin nexusparser tests
- name: mypy
run: |
python -m mypy --ignore-missing-imports --follow-imports=silent nexusparser tests
- name: Test with pytest
if: ${{ always() }}
run: |
python -m pytest -sv --show-capture=no tests