Skip to content

Commit

Permalink
v1.2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
piotrmaslanka committed Jul 9, 2020
1 parent d05b3d0 commit f7a4eee
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 3 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# v1.2.5

* bugfix: fixed `log_frames` in `Cluster`
* improved Travis build pipeline
* added stress tests for `SelectListener`

# v1.2.4

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ The default username used is guest, and password is guest.
You can also run unit tests from Docker, if you wish so. To launch the unit test suite:

```bash
docker-compose up tests
docker-compose up unittest
```

To launch the stress test suite
Expand Down
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ classifiers =
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
Operating System :: OS Independent
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
# per coverage version for codeclimate-reporter
tests_require=["nose2", "coverage", "nose2[coverage_plugin]"],
test_suite='nose2.collector.collector',
python_requires='!=2.7.*,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*',
extras_require={
':python_version == "2.7"': ['futures', 'typing', 'monotonic'],
'prctl': ['prctl'],
Expand Down
4 changes: 2 additions & 2 deletions tests/test_clustering/test_a.py
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ def ok(e):
self.assertTrue(P['q'])

def test_send_recv_nonzerolen_memoryview(self):
"""single and multi frame"""
"""single and multi frame in MEMORYVIEW mode"""
from coolamqp.attaches import BodyReceiveMode

con, fut = self.c.consume(Queue(u'hello7', exclusive=True), no_ack=True,
Expand All @@ -210,7 +210,7 @@ def test_send_recv_nonzerolen_memoryview(self):
self.assertEquals(m.body.tobytes(), data)

def test_send_recv_nonzerolen_listofmemoryview(self):
"""single and multi frame"""
"""single and multi frame in LIST_OF_MEMORYVIEW mode"""
from coolamqp.attaches import BodyReceiveMode

con, fut = self.c.consume(Queue(u'hello8', exclusive=True), no_ack=True,
Expand Down
1 change: 1 addition & 0 deletions tests/travis_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,4 @@ coverage run -m compile_definitions
coverage run --append -m nose2 -vv
COOLAMQP_FORCE_SELECT_LISTENER=1 coverage run --append -m nose2 -vv
coverage run --append -m stress_tests
COOLAMQP_FORCE_SELECT_LISTENER=1 coverage run --append -m stress_tests

0 comments on commit f7a4eee

Please sign in to comment.