Skip to content

Commit

Permalink
Merge pull request #72 from chapinb/master
Browse files Browse the repository at this point in the history
Updated setup.py testing requirements
  • Loading branch information
williballenthin authored Mar 22, 2021
2 parents 3b350cb + 534f521 commit aed643e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: Install lxml
run: pip install lxml
- name: Install python-evtx
run: pip install -e .
run: pip install -e .[test]
- name: Run tests
run: pytest tests/

10 changes: 8 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,22 @@
packages=setuptools.find_packages(),
install_requires=[
'six',
'pytest==4.6.11',
'hexdump==3.3',
'pytest-cov==2.11.1',

# pin deps for python 2, see #67
'more_itertools==5.0.0',
'zipp==1.0.0',
'configparser==4.0.2',
'pyparsing==2.4.7',
],
extras_require={
# For running unit tests & coverage
"test": [
'pytest-cov==2.11.1',
'pytest==4.6.11',
'lxml==4.6.3',
]
},
scripts=['scripts/evtx_dump.py',
'scripts/evtx_dump_chunk_slack.py',
'scripts/evtx_eid_record_numbers.py',
Expand Down

0 comments on commit aed643e

Please sign in to comment.