-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into fileGeneration
- Loading branch information
Showing
26 changed files
with
533 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
name: Django CI | ||
|
||
on: | ||
push: | ||
branches: [ "main" ] | ||
pull_request: | ||
branches: [ "main" ] | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
strategy: | ||
max-parallel: 4 | ||
matrix: | ||
python-version: [3.12] | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v3 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Install Dependencies | ||
run: | | ||
cd core | ||
python -m pip install --upgrade pip | ||
pip install -r requirements.txt | ||
- name: Run Django Tests | ||
run: | | ||
cd core | ||
python manage.py test | ||
- name: Run PIP Tests | ||
run: | | ||
cd i18nilize | ||
python3 -m tests.test_read_file | ||
python3 -m tests.test_parse_json |
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
Binary file added
BIN
+173 Bytes
i18nilize/src/internationalize/__pycache__/__init__.cpython-310.pyc
Binary file not shown.
Binary file added
BIN
+180 Bytes
i18nilize/src/internationalize/__pycache__/__init__.cpython-312.pyc
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+181 Bytes
i18nilize/src/internationalize/__pycache__/internationalize.cpython-310.pyc
Binary file not shown.
Binary file added
BIN
+710 Bytes
i18nilize/src/internationalize/__pycache__/localize.cpython-312.pyc
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+1.77 KB
i18nilize/src/internationalize/__pycache__/test_parse_json.cpython-310.pyc
Binary file not shown.
Empty file.
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
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"asdaiosdjhioashd | ||
|
||
asdiu | ||
|
||
ashdi |
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"Token": "85124f79-0829-4b80-8b5c-d52700d86e46", | ||
"translations" : [{ | ||
"language": "French", | ||
"hello": "bonjour", | ||
"No": "Non", | ||
"Why": "pourquoi" | ||
}, | ||
{ | ||
"language": "Spanish", | ||
"hello": "Hola" | ||
} | ||
] | ||
} |
Oops, something went wrong.