Skip to content
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ celerybeat-schedule
# Environments
.env
.venv
.envrc
env/
venv/
ENV/
Expand Down
7 changes: 7 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
.PHONY: install test

install:
@poetry install

test:
@DJANGO_SETTINGS_MODULE=tests.test_settings pytest
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,20 @@ sweetify.info(self.request, 'Sweet!', text='Here is a custom image', imageUrl='i
```



## Development
Use the `Makefile`to execute common tasks:

- Install dependencies
```shell
$ make install
```

- Run all tests
```shell
$ make test
```

## Contributing
Everyone is encouraged to help improve this project. Here are a few ways you can help:

Expand Down
25 changes: 23 additions & 2 deletions poetry.lock

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

1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ python = '~2.7 || ^3.4'
[tool.poetry.dev-dependencies]
pytest = '^3.9'
pytest-cov = '^2.6'
django = "=1.11"

[build-system]
requires = ['poetry>=0.12']
Expand Down