Skip to content

Instantly share code, notes, and snippets.

@perymerdeka
Last active September 15, 2021 18:02
Show Gist options
  • Save perymerdeka/5d6e709d7dfab842af07dd3557c550ea to your computer and use it in GitHub Desktop.
Save perymerdeka/5d6e709d7dfab842af07dd3557c550ea to your computer and use it in GitHub Desktop.
implementing functional test in django (project structure)
.
├── 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