Skip to content

Commit

Permalink
Merge pull request #3666 from KBVE/patch-atomic-pysdicordsh-dockerfil…
Browse files Browse the repository at this point in the history
…e-01-03-2025-1735946892

[CI] Merge patch-atomic-pysdicordsh-dockerfile-01-03-2025-1735946892 into dev
  • Loading branch information
h0lybyte authored Jan 4, 2025
2 parents aaa696a + 0234c8f commit 9f4b664
Show file tree
Hide file tree
Showing 12 changed files with 458 additions and 11 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
447 changes: 447 additions & 0 deletions apps/pydiscordsh/poetry.lock

Large diffs are not rendered by default.

File renamed without changes.
18 changes: 9 additions & 9 deletions pydiscordsh/project.json → apps/pydiscordsh/project.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "pydiscordsh",
"$schema": "../node_modules/nx/schemas/project-schema.json",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"projectType": "application",
"sourceRoot": "pydiscordsh/pydiscordsh",
"sourceRoot": "apps/pydiscordsh/pydiscordsh",
"targets": {
"lock": {
"executor": "@nxlv/python:run-commands",
"options": {
"command": "poetry lock --no-update",
"cwd": "pydiscordsh"
"cwd": "apps/pydiscordsh"
}
},
"add": {
Expand All @@ -27,7 +27,7 @@
"executor": "@nxlv/python:build",
"outputs": ["{projectRoot}/dist"],
"options": {
"outputPath": "pydiscordsh/dist",
"outputPath": "apps/pydiscordsh/dist",
"publish": false,
"lockedVersions": true,
"bundleLocalDependencies": true
Expand All @@ -46,21 +46,21 @@
},
"lint": {
"executor": "@nxlv/python:flake8",
"outputs": ["{workspaceRoot}/reports/pydiscordsh/pylint.txt"],
"outputs": ["{workspaceRoot}/reports/apps/pydiscordsh/pylint.txt"],
"options": {
"outputFile": "reports/pydiscordsh/pylint.txt"
"outputFile": "reports/apps/pydiscordsh/pylint.txt"
},
"cache": true
},
"test": {
"executor": "@nxlv/python:run-commands",
"outputs": [
"{workspaceRoot}/reports/pydiscordsh/unittests",
"{workspaceRoot}/coverage/pydiscordsh"
"{workspaceRoot}/reports/apps/pydiscordsh/unittests",
"{workspaceRoot}/coverage/apps/pydiscordsh"
],
"options": {
"command": "poetry run pytest tests/",
"cwd": "pydiscordsh"
"cwd": "apps/pydiscordsh"
},
"cache": true
}
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ exclude_lines = ['if TYPE_CHECKING:']
show_missing = true

[tool.pytest.ini_options]
addopts = "--cov --cov-report html:'../coverage/pydiscordsh/html' --cov-report xml:'../coverage/pydiscordsh/coverage.xml' --html='../reports/pydiscordsh/unittests/html/index.html' --junitxml='../reports/pydiscordsh/unittests/junit.xml'"
addopts = "--cov --cov-report html:'../../coverage/apps/pydiscordsh/html' --cov-report xml:'../../coverage/apps/pydiscordsh/coverage.xml' --html='../../reports/apps/pydiscordsh/unittests/html/index.html' --junitxml='../../reports/apps/pydiscordsh/unittests/junit.xml'"

[tool.poetry]
name = "pydiscordsh"
Expand All @@ -21,7 +21,7 @@ readme = 'README.md'
include = "pydiscordsh"

[tool.poetry.dependencies]
python = ">=3.9,<3.11"
python = ">=3.9,<3.13"

[tool.poetry.group.dev.dependencies]
autopep8 = "2.3.1"
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 9f4b664

Please sign in to comment.