Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/kevoreilly/CAPEv2 into st…
Browse files Browse the repository at this point in the history
…aging
  • Loading branch information
Andriy Brukhovetskyy committed Apr 2, 2024
2 parents e6043a1 + d326ed5 commit a7ba7b0
Show file tree
Hide file tree
Showing 160 changed files with 9,433 additions and 3,934 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/python-package-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,21 @@ jobs:

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
# Use x86 python because of https://github.com/kevoreilly/CAPEv2/issues/168
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
architecture: 'x86'

- name: Install pytest
run: pip install pytest
- name: Install dependencies
run: pip install --upgrade pytest requests

- name: Run unit tests
- name: Run analyzer unit tests
run: |
cd analyzer/windows
pytest -v .
- name: Run agent unit tests
run: |
cd agent
pytest -v .
6 changes: 6 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,12 @@ repos:
# hooks:
# - id: pyproject-flake8

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.3.0
hooks:
- id: ruff
args: [ --fix ]

- repo: https://github.com/psf/black
rev: 22.3.0
hooks:
Expand Down
175 changes: 121 additions & 54 deletions README.md

Large diffs are not rendered by default.

Loading

0 comments on commit a7ba7b0

Please sign in to comment.