Tagged Questions
0
votes
1answer
294 views
Front-end structure of large scale Django project
Few days ago, I started to work in new company. Before me, all front-end and backend code was written by one man (oh my...).
As you know, Django app contains two main directories for front-end: ...
2
votes
1answer
163 views
In Python, what is the proper testing structure for packages containing packages? [closed]
Which is the preferred test package structure for packages containing subpackages:
Tests in Subpackages?
a/
__init__.py
b.py
c/
__init__.py
cc.py
test/
__init__.py
...