Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move from __main__.py into pyproject.toml #18

Merged
merged 1 commit into from
Apr 5, 2023
Merged

Move from __main__.py into pyproject.toml #18

merged 1 commit into from
Apr 5, 2023

Conversation

jedie
Copy link
Owner

@jedie jedie commented Apr 5, 2023

The config was moved out from __main__.py into pyproject.toml

You must add in your pyproject.toml the following stuff:

[manage_django_project]
module_name="your_project_example"

# Django settings used for all commands except test/coverage/tox:
local_settings='your_project.settings.local'

# Django settings used for test/coverage/tox commands:
test_settings='your_project.settings.tests'

The config argument was remove from execute_django_from_command_line(), so your __main__.py must look like:

from manage_django_project.manage import execute_django_from_command_line


def main():
    execute_django_from_command_line()


if __name__ == '__main__':
    main()

@codecov
Copy link

codecov bot commented Apr 5, 2023

Codecov Report

Patch coverage: 97.29% and project coverage change: +2.40 🎉

Comparison is base (780a8de) 75.26% compared to head (79c1425) 77.67%.

❗ Current head 79c1425 differs from pull request most recent head b6e69a7. Consider uploading reports for the commit b6e69a7 to get more accurate results

Additional details and impacted files
@@            Coverage Diff             @@
##             main      #18      +/-   ##
==========================================
+ Coverage   75.26%   77.67%   +2.40%     
==========================================
  Files          36       37       +1     
  Lines         469      524      +55     
  Branches       30       36       +6     
==========================================
+ Hits          353      407      +54     
- Misses        116      117       +1     
Impacted Files Coverage Δ
manage_django_project/manage.py 63.63% <66.66%> (+0.30%) ⬆️
manage_django_project/__init__.py 100.00% <100.00%> (ø)
manage_django_project/apps.py 100.00% <100.00%> (ø)
manage_django_project/config.py 90.00% <100.00%> (+10.00%) ⬆️
manage_django_project/exceptions.py 100.00% <100.00%> (ø)
manage_django_project_example/__init__.py 100.00% <100.00%> (ø)
manage_django_project_example/__main__.py 100.00% <100.00%> (ø)
manage_django_project_example/settings/local.py 100.00% <100.00%> (ø)
manage_django_project_example/settings/tests.py 100.00% <100.00%> (ø)

Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here.

☔ View full report in Codecov by Sentry.
📢 Do you have feedback about the report comment? Let us know in this issue.

@jedie jedie changed the title WIP: Move configs into pyproject.toml Move from __main__.py into pyproject.toml Apr 5, 2023
The config was moved out from `__main__.py` into `pyproject.toml`

You must add in your `pyproject.toml` the following stuff:
```toml
[manage_django_project]
module_name="your_project_example"

local_settings='your_project.settings.local'

test_settings='your_project.settings.tests'
```

The `config` argument was remove from `execute_django_from_command_line()`, so your `__main__.py`
must look like:

```python
from manage_django_project.manage import execute_django_from_command_line

def main():
    execute_django_from_command_line()

if __name__ == '__main__':
    main()
```
@jedie jedie merged commit ad4f8c0 into main Apr 5, 2023
@jedie jedie deleted the dev branch April 5, 2023 12:30
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant