-
-
Notifications
You must be signed in to change notification settings - Fork 316
/
.gitignore
31 lines (27 loc) · 840 Bytes
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# This file is part of the django-environ.
#
# Copyright (c) 2021, Serghei Iakovlev <[email protected]>
# Copyright (c) 2013-2021, Daniele Faraglia <[email protected]>
#
# For the full copyright and license information, please view
# the LICENSE.txt file that was distributed with this source code.
# Please do not use this ignore file to define platform specific files.
#
# For these purposes create a global .gitignore file, which is a list of rules
# for ignoring files in every Git repository on your computer.
#
# https://help.github.com/articles/ignoring-files/#create-a-global-gitignore
# Directories to ignore (do not add trailing '/'s, they skip symlinks).
/.pytest_cache
/.tox
/build
/dist
/*.egg-info
/htmlcov
/docs/_build
# Python cache.
*.py[cod]
__pycache__
# Ignore codecoverage stuff.
.coverage*
coverage.xml