Skip to content

Commit

Permalink
CR cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
ikolomi committed Jul 8, 2024
1 parent 3443307 commit 019edc8
Show file tree
Hide file tree
Showing 5 changed files with 99 additions and 412 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ jobs:
run: |
source .env/bin/activate
cd python/tests/
pytest -c ../../pytest_pubsub.ini --asyncio-mode=auto test_pubsub.py::TestPubSub
pytest --asyncio-mode=auto -k test_pubsub
lint-rust:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -238,7 +238,7 @@ jobs:
run: |
source .env/bin/activate
cd python/tests/
pytest -c ../../pytest_pubsub.ini --asyncio-mode=auto test_pubsub.py::TestPubSub
pytest --asyncio-mode=auto -k test_pubsub
build-amazonlinux-latest:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion glide-core/src/socket_listener.rs
Original file line number Diff line number Diff line change
Expand Up @@ -120,9 +120,9 @@ impl UnixStreamListener {
match self.rotating_buffer.get_requests() {
Ok(requests) => {
if !requests.is_empty() {
// continue to read from socket
return ReceivedValues(requests);
}
// continue to read from socket
continue;
}
Err(err) => return UnhandledError(err.into()).into(),
Expand Down
2 changes: 1 addition & 1 deletion python/pytest.ini
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[pytest]
markers =
smoke_test: mark a test as a build verification testing.
addopts = -k "not redis_modules and not pubsub"
addopts = -k "not server_modules and not pubsub"
4 changes: 0 additions & 4 deletions python/pytest_pubsub.ini

This file was deleted.

Loading

0 comments on commit 019edc8

Please sign in to comment.