Last active
September 15, 2021 18:02
-
-
Save perymerdeka/5d6e709d7dfab842af07dd3557c550ea to your computer and use it in GitHub Desktop.
implementing functional test in django (project structure)
This file contains hidden or 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
. | |
├── config | |
│ ├── asgi.py | |
│ ├── __init__.py | |
│ ├── __pycache__ | |
│ │ ├── __init__.cpython-39.pyc | |
│ │ ├── settings.cpython-39.pyc | |
│ │ ├── urls.cpython-39.pyc | |
│ │ └── wsgi.cpython-39.pyc | |
│ ├── settings.py | |
│ ├── urls.py | |
│ └── wsgi.py | |
├── db.sqlite3 | |
├── functional_tests.py | |
├── manage.py | |
├── README.md | |
├── requirements.txt | |
└── temp | |
└── driver | |
├── drivers | |
│ └── chromedriver | |
│ └── linux64 | |
│ └── 92.0.4515.107 | |
│ ├── chromedriver | |
│ └── driver.zip | |
└── drivers.json |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment