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

OBS-144: Migrate from socorro-release to obs-common #6802

Merged
merged 1 commit into from
Nov 13, 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
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -152,3 +152,7 @@ rebuildreqs: .env .docker-build ## | Rebuild requirements.txt file after requir
.PHONY: updatereqs
updatereqs: .env .docker-build ## | Update deps in requirements.txt file.
${DC} run --rm --no-deps app shell pip-compile --generate-hashes --strip-extras --upgrade

.PHONY: servicestatus
servicestatus: .env .docker-build ## | Check service status
${DC} run --rm --no-deps app shell service-status
182 changes: 0 additions & 182 deletions bin/gcs_cli.py

This file was deleted.

152 changes: 0 additions & 152 deletions bin/license-check.py

This file was deleted.

6 changes: 3 additions & 3 deletions bin/lint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,13 @@ else

echo ">>> license check (${PYTHON_VERSION})"
if [[ -d ".git" ]]; then
# If the .git directory exists, we can let license-check.py do
# If the .git directory exists, we can let license-check do
# git ls-files.
python bin/license-check.py
license-check
else
# The .git directory doesn't exist, so run it on all the Python
# files in the tree.
python bin/license-check.py .
license-check .
fi

echo ">>> eslint (js)"
Expand Down
Loading