diff --git a/.travis.yml b/.travis.yml index 02296890bb5da7b924da59c03218e1fc5c4c18d5..dbf05ae83f52752f26bfd48716289f8b578207fc 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,7 +12,7 @@ before_script: - ./cc-test-reporter before-build install: - pip install -r requirements.txt - - pip install coverage nose2 + - pip install coverage nose2 requests script: - bash tests/test_posix/test_hang_until_sig.sh - coverage run -m nose2 -vv diff --git a/README.md b/README.md index 58a2f423abaa2af25d7e8e490f5cea66c07b57fa..193be031dc86567b5fbc4396ad6a1c47016f4eca 100644 --- a/README.md +++ b/README.md @@ -19,6 +19,7 @@ Satella contains, among other things: * things to help you manage your [application's configuration](satella/configuration) * a fully equipped [metrics library](satella/instrumentation/metrics) + * alongside a fully metricized [ThreadPoolExecutor](satella/instrumentation/metrics/structures/threadpool.py) * helpful [exception handlers](satella/exception_handling) * common programming [idioms](satella/coding) diff --git a/setup.py b/setup.py index 6dc2f903279512719b4db3df85906a880ac1c97b..ef8a18a6bb6982c42bd6b45ad83b4cbec1c837a6 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup, find_packages from satella import __version__ -setup(keywords=['ha', 'high availability', 'scalable', 'scalability', 'server'], +setup(keywords=['ha', 'high availability', 'scalable', 'scalability', 'server', 'metrics'], packages=find_packages(include=['satella', 'satella.*']), version=__version__, install_requires=[ diff --git a/tests/test_instrumentation/test_metrics/test_structures.py b/tests/test_instrumentation/test_metrics/test_structures.py index 3dfbe9a51f7d7f6ce2287cc2e6580c03f9fbbd10..6550dea450c442907cfc74efd319be6dfb708c5c 100644 --- a/tests/test_instrumentation/test_metrics/test_structures.py +++ b/tests/test_instrumentation/test_metrics/test_structures.py @@ -2,7 +2,7 @@ import unittest from satella.instrumentation.metrics import getMetric -from satella import time +import time from satella.instrumentation.metrics.structures import MetrifiedThreadPoolExecutor