-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use Github template for gitignore (#7)
* Use Github template for gitignore
- Loading branch information
1 parent
9e931c7
commit 8be3653
Showing
3 changed files
with
76 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,76 @@ | ||
.DS_Store | ||
logs/ | ||
anyscale_provider/.DS_Store | ||
anyscale_provider/example_dags/.DS_Store | ||
anyscale_provider/example_dags/ray_scripts/.DS_Store | ||
anyscale_provider/example_dags/logs | ||
anyscale_provider/__pycache__ | ||
anyscale_provider/hooks/__pycache__ | ||
anyscale_provider/operators/__pycache__ | ||
anyscale_provider/triggers/__pycache__ | ||
tests/__pycache__ | ||
tests/dags/__pycache__ | ||
tests/hooks/__pycache__ | ||
tests/operators/__pycache__ | ||
tests/triggers/__pycache__ | ||
# 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 | ||
.ruff_cache | ||
|
||
# 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 | ||
*.py,cover | ||
.hypothesis/ | ||
.pytest_cache/ | ||
cover/ | ||
|
||
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm | ||
__pypackages__/ | ||
|
||
# Environments | ||
.env | ||
.venv | ||
env/ | ||
venv/ | ||
ENV/ | ||
env.bak/ | ||
venv.bak/ | ||
|
||
# mypy | ||
.mypy_cache/ | ||
.dmypy.json | ||
dmypy.json | ||
|
||
# pytype static type analyzer | ||
.pytype/ | ||
|
||
# Pycham | ||
.idea/ |
Binary file not shown.
Binary file removed
BIN
-2.15 KB
tests/dags/example_dags/__pycache__/anyscale_service.cpython-311.pyc
Binary file not shown.