Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
C
common_helper_yara
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
fact-depend
common_helper_yara
Commits
9ba0fe62
Commit
9ba0fe62
authored
Sep 07, 2021
by
Jörg Stucke
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added github action + config files
parent
6f38b335
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
43 additions
and
5 deletions
+43
-5
run_tests.yml
.github/workflows/run_tests.yml
+24
-0
.gitignore
.gitignore
+6
-4
pytest.ini
pytest.ini
+2
-0
setup.cfg
setup.cfg
+3
-0
setup.py
setup.py
+8
-1
No files found.
.github/workflows/run_tests.yml
0 → 100644
View file @
9ba0fe62
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
.gitignore
View file @
9ba0fe62
# general things to ignore
build/
dist/
*.egg-info/
.coverage
*.egg
*.egg-info/
*.py[cod]
__pycache__/
*.so
*~
.idea
.project
.pydevproject
__pycache__/
build/
dist/
pytest.ini
0 → 100644
View file @
9ba0fe62
[pytest]
addopts
=
--pycodestyle --cov=./ -v
setup.cfg
0 → 100644
View file @
9ba0fe62
[pycodestyle]
ignore = E501,W503
select = E504
setup.py
View file @
9ba0fe62
from
setuptools
import
setup
,
find_packages
VERSION
=
"0.2"
VERSION
=
"0.2
.1
"
setup
(
name
=
"common_helper_yara"
,
...
...
@@ -9,6 +9,13 @@ setup(
install_requires
=
[
'common_helper_files @ git+https://github.com/fkie-cad/common_helper_files.git'
],
extras_require
=
{
'dev'
:
[
'pytest'
,
'pytest-pycodestyle'
,
'pytest-cov'
]
},
description
=
"Yara command line binding"
,
author
=
"Fraunhofer FKIE"
,
author_email
=
"peter.weidenbach@fkie.fraunhofer.de"
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment