Skip to content

Commit b5e13c1

Browse files
committed
port
1 parent b56c79e commit b5e13c1

26 files changed

+2627
-1
lines changed

.gitignore

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,50 @@
1+
# Existing project-specific ignores
12
specs
23
monorepo
34
featurevisor-go
5+
6+
# Bytecode / cache
7+
__pycache__/
8+
*.py[cod]
9+
*$py.class
10+
*.so
11+
.Python
12+
13+
# Virtual environments
14+
venv/
15+
env/
16+
.venv/
17+
.env
18+
.env.local
19+
20+
# Distribution / build
21+
build/
22+
dist/
23+
*.egg-info/
24+
*.egg
25+
26+
# Testing / coverage
27+
.pytest_cache/
28+
.coverage
29+
htmlcov/
30+
.tox/
31+
coverage.xml
32+
*.cover
33+
34+
# Type checkers / linters
35+
.mypy_cache/
36+
.ruff_cache/
37+
38+
# IDE / editor
39+
.idea/
40+
.vscode/
41+
*.swp
42+
*.swo
43+
*~
44+
45+
# OS
46+
.DS_Store
47+
Thumbs.db
48+
49+
# Logs
50+
*.log

Makefile

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,3 +24,11 @@ setup-golang-sdk:
2424
.PHONY: update-golang-sdk
2525
update-golang-sdk:
2626
(cd featurevisor-go && git pull origin main)
27+
28+
.PHONY: test
29+
test:
30+
PYTHONPATH=src python3 -m unittest discover -s tests -v
31+
32+
.PHONY: test-example-1
33+
test-example-1:
34+
PYTHONPATH=src python3 -m featurevisor test --projectDirectoryPath=./monorepo/examples/example-1

0 commit comments

Comments
 (0)