diff --git a/.gitignore b/.gitignore index e570d0c..0af8f2f 100644 --- a/.gitignore +++ b/.gitignore @@ -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/ diff --git a/tests/dags/example_dags/__pycache__/anyscale_dag.cpython-311.pyc b/tests/dags/example_dags/__pycache__/anyscale_dag.cpython-311.pyc deleted file mode 100644 index 5e8baef..0000000 Binary files a/tests/dags/example_dags/__pycache__/anyscale_dag.cpython-311.pyc and /dev/null differ diff --git a/tests/dags/example_dags/__pycache__/anyscale_service.cpython-311.pyc b/tests/dags/example_dags/__pycache__/anyscale_service.cpython-311.pyc deleted file mode 100644 index 242ec85..0000000 Binary files a/tests/dags/example_dags/__pycache__/anyscale_service.cpython-311.pyc and /dev/null differ