Skip to content

Commit 5bbc277

Browse files
zhilingcfeast-ci-bot
authored andcommitted
Integration test (#170)
* Add wait flag for jobs, fix go proto path for dataset service * Rebase with master * Add integration test for redis-bq-dataflow * Use go modules, add tests for util, printer and cmd * Add HealthControllerTest * Add integration tests folder * Format dataframe dtypes returned from serving properly * Update helm templates for easier setting of LoadBalancerSourceRanges * Add unit test for UIServiceController * Update docker file to include argo * Add prow configuration for starting integration test * Remove warehouse and serving info in feature specs test data * Fix postsubmit name prefix * Update sourceOptions for testdata * Update location for staging data in feast integration * Update testdata to stage * Integration test: Fix incorrect path in import csv * Separate images for unit and integration tests
1 parent 6193aa9 commit 5bbc277

File tree

118 files changed

+3711
-1710
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

118 files changed

+3711
-1710
lines changed

.gitignore

Lines changed: 119 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,4 +46,122 @@ vendor
4646
.direnv
4747

4848
.terraform/
49-
*.tfvars
49+
*.tfvars
50+
51+
# python
52+
# Byte-compiled / optimized / DLL files
53+
__pycache__/
54+
*.py[cod]
55+
*$py.class
56+
57+
# C extensions
58+
*.so
59+
60+
# Distribution / packaging
61+
.Python
62+
build/
63+
develop-eggs/
64+
dist/
65+
downloads/
66+
eggs/
67+
.eggs/
68+
lib/
69+
lib64/
70+
parts/
71+
sdist/
72+
var/
73+
wheels/
74+
share/python-wheels/
75+
*.egg-info/
76+
.installed.cfg
77+
*.egg
78+
MANIFEST
79+
80+
# PyInstaller
81+
# Usually these files are written by a python script from a template
82+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
83+
*.manifest
84+
*.spec
85+
86+
# Installer logs
87+
pip-log.txt
88+
pip-delete-this-directory.txt
89+
90+
# Unit test / coverage reports
91+
htmlcov/
92+
.tox/
93+
.nox/
94+
.coverage
95+
.coverage.*
96+
.cache
97+
nosetests.xml
98+
coverage.xml
99+
*.cover
100+
.hypothesis/
101+
.pytest_cache/
102+
103+
# Translations
104+
*.mo
105+
*.pot
106+
107+
# Django stuff:
108+
*.log
109+
local_settings.py
110+
db.sqlite3
111+
112+
# Flask stuff:
113+
instance/
114+
.webassets-cache
115+
116+
# Scrapy stuff:
117+
.scrapy
118+
119+
# Sphinx documentation
120+
docs/_build/
121+
122+
# PyBuilder
123+
target/
124+
125+
# Jupyter Notebook
126+
.ipynb_checkpoints
127+
128+
# IPython
129+
profile_default/
130+
ipython_config.py
131+
132+
# pyenv
133+
.python-version
134+
135+
# celery beat schedule file
136+
celerybeat-schedule
137+
138+
# SageMath parsed files
139+
*.sage.py
140+
141+
# Environments
142+
.env
143+
.venv
144+
env/
145+
venv/
146+
ENV/
147+
env.bak/
148+
venv.bak/
149+
150+
# Spyder project settings
151+
.spyderproject
152+
.spyproject
153+
154+
# Rope project settings
155+
.ropeproject
156+
157+
# mkdocs documentation
158+
/site
159+
160+
# mypy
161+
.mypy_cache/
162+
.dmypy.json
163+
dmypy.json
164+
165+
# Pyre type checker
166+
.pyre/
167+
.vscode

0 commit comments

Comments
 (0)