Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • AlekSIS/onboarding/AlekSIS-App-Tezor
  • sunweaver/AlekSIS-App-Tezor
  • 3lisvequii/AlekSIS-App-Tezor
3 results
Show changes
Commits on Source (3)
...@@ -34,8 +34,8 @@ url = "https://edugit.org/api/v4/projects/461/packages/pypi/simple" ...@@ -34,8 +34,8 @@ url = "https://edugit.org/api/v4/projects/461/packages/pypi/simple"
priority = "supplemental" priority = "supplemental"
[tool.poetry.dependencies] [tool.poetry.dependencies]
python = "^3.10" python = "^3.10"
django-payments-sepa = { version = "^1.2.dev0", allow-prereleases = true, extras = ["fints"] } django-payments-sepa = { version = "^2.0.0.dev0", allow-prereleases = true, extras = ["fints"] }
aleksis-core = "^4.0.0.dev11" aleksis-core = "^4.0.0.dev16"
django-payments = { version = "^3.0.0", extras = ["sofort"] } django-payments = { version = "^3.0.0", extras = ["sofort"] }
[tool.poetry.plugins."aleksis.app"] [tool.poetry.plugins."aleksis.app"]
......
[tox] [tox]
skipsdist = True skipsdist = True
skip_missing_interpreters = true skip_missing_interpreters = true
envlist = py39,py310,py311 envlist = py310,py311,py312
[testenv] [testenv]
allowlist_externals = allowlist_externals =
...@@ -24,11 +24,13 @@ setenv = ...@@ -24,11 +24,13 @@ setenv =
[testenv:lint] [testenv:lint]
commands_pre = commands_pre =
poetry install --only=dev poetry install
yarnpkg --cwd=.dev-js yarnpkg --cwd=.dev-js
commands = commands =
poetry run ruff check {posargs} aleksis/ poetry run ruff check {posargs} aleksis/
yarnpkg --cwd=.dev-js run prettier --ignore-path={toxinidir}/.prettierignore {posargs} --check .. yarnpkg --cwd=.dev-js run prettier --ignore-path={toxinidir}/.prettierignore {posargs} --check ..
poetry run aleksis-admin graphql_schema --schema aleksis.core.schema.schema --out .dev-js/schema.json
yarnpkg --cwd=.dev-js run eslint ../aleksis/**/*/frontend/**/*.{js,vue,graphql} --config={toxinidir}/.dev-js/.eslintrc.js
[testenv:security] [testenv:security]
commands_pre = commands_pre =
...@@ -41,6 +43,8 @@ commands = ...@@ -41,6 +43,8 @@ commands =
commands_pre = commands_pre =
poetry install poetry install
poetry run sh -c "cd aleksis; aleksis-admin compilemessages" poetry run sh -c "cd aleksis; aleksis-admin compilemessages"
poetry run aleksis-admin yarn install
poetry run aleksis-admin compile_scss
commands = poetry build commands = poetry build
[testenv:docs] [testenv:docs]
......