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

Drop taskcluster checks #1488

Merged
merged 1 commit into from
Sep 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ EXPOSE 8000
# run as non priviledged user
USER app

RUN poetry install --with remotesettings,taskcluster --without dev --no-ansi --no-interaction --verbose
RUN poetry install --with remotesettings --without dev --no-ansi --no-interaction --verbose

ENTRYPOINT ["/app/bin/run.sh"]
CMD ["server"]
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ install: $(INSTALL_STAMP) ## Install dependencies
$(INSTALL_STAMP): pyproject.toml poetry.lock
@if [ -z $(POETRY) ]; then echo "Poetry could not be found. See https://python-poetry.org/docs/"; exit 2; fi
$(POETRY) --version
$(POETRY) install --with remotesettings,taskcluster --no-ansi --no-interaction --verbose
$(POETRY) install --with remotesettings --no-ansi --no-interaction --verbose
touch $(INSTALL_STAMP)

clean: ## Delete cache files
Expand Down
2 changes: 1 addition & 1 deletion bin/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ elif [ $1 == "check" ]; then
exec poetry run python -m telescope $@

elif [ $1 == "test" ]; then
poetry install --with remotesettings,taskcluster --no-ansi --no-interaction --verbose
poetry install --with remotesettings --no-ansi --no-interaction --verbose
poetry run pytest tests

else
Expand Down
Empty file removed checks/taskcluster/__init__.py
Empty file.
82 changes: 0 additions & 82 deletions checks/taskcluster/create_task.py

This file was deleted.

97 changes: 0 additions & 97 deletions checks/taskcluster/latest_indexed.py

This file was deleted.

13 changes: 0 additions & 13 deletions checks/taskcluster/utils.py

This file was deleted.

63 changes: 0 additions & 63 deletions checks/taskcluster/write_secrets.py

This file was deleted.

64 changes: 2 additions & 62 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 0 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,6 @@ detect-secrets = "^1.5.0"
[tool.poetry.group.remotesettings]
optional = true

[tool.poetry.group.taskcluster]
optional = true

[tool.poetry.group.remotesettings.dependencies]
kinto-http = "^11.2.0"
cryptography = "^43.0.1"
Expand All @@ -47,9 +44,6 @@ beautifulsoup4 = "^4.12.3"
autograph-utils = "^0.3.0"
canonicaljson-rs = "^0.6.0"

[tool.poetry.group.taskcluster.dependencies]
taskcluster = "^68.0.4"

[tool.pytest.ini_options]
asyncio_mode = "auto"

Expand Down
Loading
Loading