Unverified Commit 86686b18 by Jörg Stucke Committed by GitHub

Merge pull request #4 from fkie-cad/3-remove-broken-links

3 remove broken links
parents 6733b09b 585806d9
name: Run Tests
on: [pull_request]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: install deps
run: |
python3 -m pip install -U pip
python3 -m pip install --editable .[dev]
- name: run pytest
run: pytest
[pytest] [pytest]
addopts = --pep8 --cov=./ -v addopts = --pycodestyle --cov=./ -v
pep8ignore =
*.py E501
[pycodestyle]
ignore = E501,W503
select = E504
from setuptools import setup, find_packages from setuptools import setup, find_packages
VERSION = '0.2.2' VERSION = '0.2.3'
setup( setup(
name='common_helper_files', name='common_helper_files',
...@@ -9,6 +9,13 @@ setup( ...@@ -9,6 +9,13 @@ setup(
install_requires=[ install_requires=[
'bitmath' 'bitmath'
], ],
extras_require={
'dev': [
'pytest',
'pytest-pycodestyle',
'pytest-cov'
]
},
description='file operation helper functions', description='file operation helper functions',
author='Fraunhofer FKIE', author='Fraunhofer FKIE',
author_email='peter.weidenbach@fkie.fraunhofer.de', author_email='peter.weidenbach@fkie.fraunhofer.de',
......
nonexistent
\ No newline at end of file
recursive_broken_link
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment