Skip to content

Commit 8d450ff

Browse files
authored
Merge pull request #36 from FalkorDB/delete_cache
Remove cached files and remove Lint from CI
2 parents 8e82565 + 1ef5536 commit 8d450ff

30 files changed

+86
-32
lines changed

.github/workflows/pylint.yml

Lines changed: 0 additions & 23 deletions
This file was deleted.

.github/workflows/python-app.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ jobs:
3333
# stop the build if there are Python syntax errors or undefined names
3434
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
3535
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
36-
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
37-
- name: Test with pytest
38-
run: |
39-
pytest
36+
# flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
37+
38+
# - name: Test with pytest
39+
# run: |
40+
# pytest

.gitignore

Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,77 @@
1+
# Python
2+
*.pyc
3+
*.pyo
4+
*.pyd
5+
__pycache__/
6+
*.env
7+
.venv/
8+
env/
9+
venv/
10+
ENV/
11+
*.egg-info/
12+
*.egg
13+
pip-log.txt
14+
15+
# Flask
16+
instance/
17+
*.sqlite3
18+
*.db
19+
*.bak
20+
instance/config.py
21+
instance/*.secret
22+
23+
# Environment Variables
124
.env
25+
.env.*
26+
27+
# Logs
28+
logs/
29+
*.log
30+
*.out
31+
*.err
32+
33+
# Pytest and Coverage
34+
.pytest_cache/
35+
.coverage
36+
.tox/
37+
nosetests.xml
38+
coverage.xml
39+
*.cover
40+
.cache
41+
42+
# IDEs and Editors
43+
.vscode/
44+
.idea/.env
245
.vercel
46+
47+
# ignore the .pyc files
48+
*.pyc
49+
50+
dist/
51+
# Node (if using npm/yarn for assets)
52+
node_modules/
53+
*.lock
54+
55+
# Static assets (if generated)
56+
static/
57+
dist/
58+
build/
59+
60+
# Docker
61+
*.pid
62+
docker-compose.override.yml
63+
64+
# Heroku
65+
*.buildpacks
66+
*.env.local
67+
*.env.production
68+
*.env.*.local
69+
70+
# Miscellaneous
71+
*.bak
72+
*.tmp
73+
*.log.*
74+
Thumbs.db
75+
76+
# Vercel
77+
.vercel
-456 Bytes
Binary file not shown.

api/__pycache__/app.cpython-312.pyc

-16.5 KB
Binary file not shown.
-458 Bytes
Binary file not shown.

api/__pycache__/graph.cpython-312.pyc

-30.9 KB
Binary file not shown.

api/__pycache__/info.cpython-312.pyc

-4.61 KB
Binary file not shown.

api/__pycache__/llm.cpython-312.pyc

-4.16 KB
Binary file not shown.
-5.05 KB
Binary file not shown.

0 commit comments

Comments
 (0)