-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1398 from DDMAL/staging
Merge staging into production, 2024 Apr 04 edition
- Loading branch information
Showing
9 changed files
with
98 additions
and
80 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
"""Functions to make fake objects to be used for testing""" | ||
|
||
import random | ||
from faker import Faker | ||
|
||
|
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,11 +3,11 @@ asgiref==3.6.0 | |
astroid==2.4.2 | ||
attrs==19.3.0 | ||
backports.zoneinfo==0.2.1 | ||
black==21.10b0 | ||
black==24.3.0 | ||
certifi==2023.7.22 | ||
chardet==3.0.4 | ||
charset-normalizer==2.0.12 | ||
click==7.1.2 | ||
click==8.0.0 | ||
coverage==5.3.1 | ||
Django==4.2.11 | ||
django-autocomplete-light==3.9.4 | ||
|
@@ -36,7 +36,7 @@ sqlparse==0.4.4 | |
text-unidecode==1.3 | ||
toml==0.10.1 | ||
typed-ast==1.4.1 | ||
typing-extensions==3.10.0.0 | ||
typing-extensions==4.0.1 | ||
ujson==5.9.0 | ||
urllib3==1.26.18 | ||
volpiano-display-utilities @ git+https://github.com/DDMAL/[email protected] | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
"""Modules""" | ||
|
||
import json | ||
import sys | ||
from pathlib import Path | ||
|