| Commit message (Collapse) | Author | Age | Lines |
| |
|
|
|
|
|
|
|
|
|
| |
* Make CI and deployment.yaml share the same dependency install script
* squashme: add set -euo pipefail as sane defaults
This also requires running under bash rather than sh
* squashme: add make target for installing eval deps
|
|
|
|
|
|
|
|
| |
The compose file already uses compose v2 features, and most clients
likely already alias docker-compose to v2 under the hood. This change is
more of a formality.
Signed-off-by: Hassan Abouelela <[email protected]>
|
|
|
|
|
|
|
|
|
| |
Remove the coveralls dependency in favor of the GitHub action uploader.
The action is an official product from coveralls, and has the same
features as the package, however it reduces the project's dependencies
in favor of a simpler more stand-alone solution.
Signed-off-by: Hassan Abouelela <[email protected]>
|
|
|
|
|
|
|
|
|
|
|
| |
Falcon provides a WSGI app which can be used by any server, not just
gunicorn. Thus, make gunicorn optional in case the user wants to use
a different server. There shouldn't be any import errors since the class
is now in an isolated module. The only time that module is imported is
when gunicorn loads its config.
Sentry is there for Python Discord mainly, so this dependency shouldn't
be imposed on others.
|
| |
|
| |
|
|
|
|
| |
Ensure the dependencies are up-to-date in the dev container.
|
|
|
|
|
| |
It's already installed by the container since Docker Compose is
configured with the DEV arg.
|
|
Pipenv was limited to only "normal" and "dev" dependencies. pip-tools
is more flexible, since each requirements file can be constrained by
more than one other requirements file. This means CI can choose to only
install coverage deps in the test job and linting deps in the lint job,
but these dependencies will still be constrained by each other and by
other requirements, so a developer will be able to install both sets
simultaneously without conflicts.
Use a Makefile to make up for the loss of Pipenv's scripts
functionality.
|