Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Integration test #170

Merged
merged 21 commits into from
Apr 9, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
6eea483
Add wait flag for jobs, fix go proto path for dataset service
Feb 19, 2019
39c9ab7
Rebase with master
Mar 29, 2019
b9e724d
Rebase with master
Mar 29, 2019
3c274f6
Add integration test for redis-bq-dataflow
Mar 29, 2019
cb1dd97
Use go modules, add tests for util, printer and cmd
davidheryanto Mar 26, 2019
78cdcb3
Add HealthControllerTest
davidheryanto Apr 1, 2019
70016b8
Add integration tests folder
davidheryanto Apr 4, 2019
297e04d
Format dataframe dtypes returned from serving properly
davidheryanto Apr 4, 2019
2075b42
Update helm templates for easier setting of LoadBalancerSourceRanges
davidheryanto Apr 4, 2019
6614c88
Add unit test for UIServiceController
davidheryanto Apr 5, 2019
7bb8a6d
Update docker file to include argo
Apr 8, 2019
a8eeef6
Add prow configuration for starting integration test
Apr 8, 2019
7886309
Remove warehouse and serving info in feature specs test data
davidheryanto Apr 8, 2019
56a10a3
Fix postsubmit name prefix
Apr 8, 2019
e3092fa
Merge branch 'int-test' of github.com:zhilingc/feast into int-test
Apr 8, 2019
aae4092
Update sourceOptions for testdata
davidheryanto Apr 9, 2019
2be4554
Update location for staging data in feast integration
davidheryanto Apr 9, 2019
09f2e4e
Update testdata to stage
davidheryanto Apr 9, 2019
59a7c07
Integration test: Fix incorrect path in import csv
davidheryanto Apr 9, 2019
fe36f6e
Separate images for unit and integration tests
Apr 9, 2019
fc80221
Merge branch 'int-test' of github.com:zhilingc/feast into int-test
Apr 9, 2019
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
120 changes: 119 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,122 @@ vendor
.direnv

.terraform/
*.tfvars
*.tfvars

# python
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# C extensions
*.so

# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
.hypothesis/
.pytest_cache/

# Translations
*.mo
*.pot

# Django stuff:
*.log
local_settings.py
db.sqlite3

# Flask stuff:
instance/
.webassets-cache

# Scrapy stuff:
.scrapy

# Sphinx documentation
docs/_build/

# PyBuilder
target/

# Jupyter Notebook
.ipynb_checkpoints

# IPython
profile_default/
ipython_config.py

# pyenv
.python-version

# celery beat schedule file
celerybeat-schedule

# SageMath parsed files
*.sage.py

# Environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/

# Spyder project settings
.spyderproject
.spyproject

# Rope project settings
.ropeproject

# mkdocs documentation
/site

# mypy
.mypy_cache/
.dmypy.json
dmypy.json

# Pyre type checker
.pyre/
.vscode
Loading