Skip to content

Commit

Permalink
Merge pull request #733 from buzzdeee/pip_without_tests
Browse files Browse the repository at this point in the history
do not install the tests with pip install
  • Loading branch information
jertel authored Feb 23, 2022
2 parents d9e3dc2 + 0fec6b9 commit 6f110a0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@
- Pytest 7.0.0 to 7.0.1 - [#710](https://github.com/jertel/elastalert2/pull/710) - @nsano-rururu
- Fixing jira_transition_to schema bug. Change property type from boolean to string [#721](https://github.com/jertel/elastalert2/pull/721) - @toxisch
- Begin Elasticsearch 8 support - ElastAlert 2 now supports setup with fresh ES 8 instances, and works with some alert types [#731](https://github.com/jertel/elastalert2/pull/731) - @ferozsalam
- Enable dynamic setting of rules volume in helm chart [#732] - @ChrisFraun
- Enable dynamic setting of rules volume in helm chart [#732](https://github.com/jertel/elastalert2/pull/732) - @ChrisFraun
- Do not install tests via pip install [#733](https://github.com/jertel/elastalert2/pull/733) - @buzzdeee


# 2.3.0
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
'elastalert-test-rule=elastalert.test_rule:main',
'elastalert-rule-from-kibana=elastalert.rule_from_kibana:main',
'elastalert=elastalert.elastalert:main']},
packages=find_packages(),
packages=find_packages(exclude=["tests"]),
package_data={'elastalert': ['schema.yaml', 'es_mappings/**/*.json']},
install_requires=[
'apscheduler>=3.8.1,<4.0',
Expand Down

0 comments on commit 6f110a0

Please sign in to comment.