Skip to content

Commit 95988fb

Browse files
authored
chore: excluded tests from packaging (#164)
* Exclude tests from installs
1 parent 52a9159 commit 95988fb

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@
55
### Features
66
1. [#161](https://github.com/influxdata/influxdb-client-python/pull/161): Added logging message for retries
77

8+
### Bug Fixes
9+
1. [#164](https://github.com/influxdata/influxdb-client-python/pull/164): Excluded tests from packaging
10+
811
## 1.11.0 [2020-10-02]
912

1013
### Features

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
install_requires=requires,
3838
extras_require={'extra': extra_requires, 'ciso': ciso_requires},
3939
long_description_content_type="text/x-rst",
40-
packages=find_packages(),
40+
packages=find_packages(exclude=('tests*',)),
4141
test_suite='tests',
4242
python_requires='>=3.6',
4343
include_package_data=True,

0 commit comments

Comments
 (0)