Skip to content

Commit 2d2d201

Browse files
author
Bin Ao
committed
test
1 parent 83216e1 commit 2d2d201

File tree

1 file changed

+298
-0
lines changed

1 file changed

+298
-0
lines changed

.gitignore

Lines changed: 298 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,301 @@
44
*.iws
55
out/
66
build/
7+
### venv template
8+
# Virtualenv
9+
# http://iamzed.com/2009/05/07/a-primer-on-virtualenv/
10+
.Python
11+
[Bb]in
12+
[Ii]nclude
13+
[Ll]ib
14+
[Ll]ib64
15+
[Ll]ocal
16+
[Ss]cripts
17+
pyvenv.cfg
18+
.venv
19+
pip-selfcheck.json
20+
21+
### VirtualEnv template
22+
# Virtualenv
23+
# http://iamzed.com/2009/05/07/a-primer-on-virtualenv/
24+
.Python
25+
[Bb]in
26+
[Ii]nclude
27+
[Ll]ib
28+
[Ll]ib64
29+
[Ll]ocal
30+
[Ss]cripts
31+
pyvenv.cfg
32+
.venv
33+
pip-selfcheck.json
34+
35+
### CircuitPython template
36+
.Trashes
37+
.metadata_never_index
38+
.fseventsd/
39+
boot_out.txt
40+
41+
### Spark template
42+
*#*#
43+
*.#*
44+
*.iml
45+
*.ipr
46+
*.iws
47+
*.pyc
48+
*.pyo
49+
*.swp
50+
*~
51+
.DS_Store
52+
.cache
53+
.classpath
54+
.ensime
55+
.ensime_cache/
56+
.ensime_lucene
57+
.generated-mima*
58+
.idea/
59+
.idea_modules/
60+
.project
61+
.pydevproject
62+
.scala_dependencies
63+
.settings
64+
/lib/
65+
R-unit-tests.log
66+
R/unit-tests.out
67+
R/cran-check.out
68+
R/pkg/vignettes/sparkr-vignettes.html
69+
R/pkg/tests/fulltests/Rplots.pdf
70+
build/*.jar
71+
build/apache-maven*
72+
build/scala*
73+
build/zinc*
74+
cache
75+
checkpoint
76+
conf/*.cmd
77+
conf/*.conf
78+
conf/*.properties
79+
conf/*.sh
80+
conf/*.xml
81+
conf/java-opts
82+
conf/slaves
83+
dependency-reduced-pom.xml
84+
derby.log
85+
dev/create-release/*final
86+
dev/create-release/*txt
87+
dev/pr-deps/
88+
dist/
89+
docs/_site
90+
docs/api
91+
sql/docs
92+
sql/site
93+
lib_managed/
94+
lint-r-report.log
95+
log/
96+
logs/
97+
out/
98+
project/boot/
99+
project/build/target/
100+
project/plugins/lib_managed/
101+
project/plugins/project/build.properties
102+
project/plugins/src_managed/
103+
project/plugins/target/
104+
python/lib/pyspark.zip
105+
python/deps
106+
python/test_coverage/coverage_data
107+
python/test_coverage/htmlcov
108+
python/pyspark/python
109+
reports/
110+
scalastyle-on-compile.generated.xml
111+
scalastyle-output.xml
112+
scalastyle.txt
113+
spark-*-bin-*.tgz
114+
spark-tests.log
115+
src_managed/
116+
streaming-tests.log
117+
target/
118+
unit-tests.log
119+
work/
120+
docs/.jekyll-metadata
121+
122+
# For Hive
123+
TempStatsStore/
124+
metastore/
125+
metastore_db/
126+
sql/hive-thriftserver/test_warehouses
127+
warehouse/
128+
spark-warehouse/
129+
130+
# For R session data
131+
.RData
132+
.RHistory
133+
.Rhistory
134+
*.Rproj
135+
*.Rproj.*
136+
137+
.Rproj.user
138+
139+
# For SBT
140+
.jvmopts
141+
142+
143+
### Python template
144+
# Byte-compiled / optimized / DLL files
145+
__pycache__/
146+
*.py[cod]
147+
*$py.class
148+
149+
# C extensions
150+
*.so
151+
152+
# Distribution / packaging
153+
.Python
154+
build/
155+
develop-eggs/
156+
dist/
157+
downloads/
158+
eggs/
159+
.eggs/
160+
lib/
161+
lib64/
162+
parts/
163+
sdist/
164+
var/
165+
wheels/
166+
share/python-wheels/
167+
*.egg-info/
168+
.installed.cfg
169+
*.egg
170+
MANIFEST
171+
172+
# PyInstaller
173+
# Usually these files are written by a python script from a template
174+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
175+
*.manifest
176+
*.spec
177+
178+
# Installer logs
179+
pip-log.txt
180+
pip-delete-this-directory.txt
181+
182+
# Unit test / coverage reports
183+
htmlcov/
184+
.tox/
185+
.nox/
186+
.coverage
187+
.coverage.*
188+
.cache
189+
nosetests.xml
190+
coverage.xml
191+
*.cover
192+
*.py,cover
193+
.hypothesis/
194+
.pytest_cache/
195+
cover/
196+
197+
# Translations
198+
*.mo
199+
*.pot
200+
201+
# Django stuff:
202+
*.log
203+
local_settings.py
204+
db.sqlite3
205+
db.sqlite3-journal
206+
207+
# Flask stuff:
208+
instance/
209+
.webassets-cache
210+
211+
# Scrapy stuff:
212+
.scrapy
213+
214+
# Sphinx documentation
215+
docs/_build/
216+
217+
# PyBuilder
218+
.pybuilder/
219+
target/
220+
221+
# Jupyter Notebook
222+
.ipynb_checkpoints
223+
224+
# IPython
225+
profile_default/
226+
ipython_config.py
227+
228+
# pyenv
229+
# For a library or package, you might want to ignore these files since the code is
230+
# intended to run in multiple environments; otherwise, check them in:
231+
# .python-version
232+
233+
# pipenv
234+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
235+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
236+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
237+
# install all needed dependencies.
238+
#Pipfile.lock
239+
240+
# poetry
241+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
242+
# This is especially recommended for binary packages to ensure reproducibility, and is more
243+
# commonly ignored for libraries.
244+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
245+
#poetry.lock
246+
247+
# pdm
248+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
249+
#pdm.lock
250+
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
251+
# in version control.
252+
# https://pdm.fming.dev/#use-with-ide
253+
.pdm.toml
254+
255+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
256+
__pypackages__/
257+
258+
# Celery stuff
259+
celerybeat-schedule
260+
celerybeat.pid
261+
262+
# SageMath parsed files
263+
*.sage.py
264+
265+
# Environments
266+
.env
267+
.venv
268+
env/
269+
venv/
270+
ENV/
271+
env.bak/
272+
venv.bak/
273+
274+
# Spyder project settings
275+
.spyderproject
276+
.spyproject
277+
278+
# Rope project settings
279+
.ropeproject
280+
281+
# mkdocs documentation
282+
/site
283+
284+
# mypy
285+
.mypy_cache/
286+
.dmypy.json
287+
dmypy.json
288+
289+
# Pyre type checker
290+
.pyre/
291+
292+
# pytype static type analyzer
293+
.pytype/
294+
295+
# Cython debug symbols
296+
cython_debug/
297+
298+
# PyCharm
299+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
300+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
301+
# and can be added to the global gitignore or merged into this file. For a more nuclear
302+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
303+
#.idea/
304+

0 commit comments

Comments
 (0)