We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4e0a464 commit 51e77adCopy full SHA for 51e77ad
.github/workflows/ci.yml
@@ -26,14 +26,14 @@ jobs:
26
python -m pip install --upgrade pip setuptools wheel
27
pip install -r requirements.txt
28
pip install pytest flake8
29
- pip install -e .
30
31
- name: Lint with flake8
32
run: |
33
- flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
34
- flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
+ flake8 yaraforge/ --count --select=E9,F63,F7,F82 --show-source --statistics
+ flake8 yaraforge/ --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
35
36
- name: Run tests
37
run: pytest tests/ -v --tb=short
38
env:
+ PYTHONPATH: .
39
OPENAI_API_KEY: sk-dummy-key-for-ci-testing-only
0 commit comments