Skip to content

Commit

Permalink
Re-enable integration test for configure_index (#289)
Browse files Browse the repository at this point in the history
## Problem

We temporarily disabled this integration test earlier after reporting a
bug to the backend team. Now we can bring it back.

## Solution

Enable test. 

## Type of Change

- [x] Infrastructure change (CI configs, etc)
  • Loading branch information
jhamon committed Jan 17, 2024
1 parent d44b936 commit c84ea97
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions tests/integration/control/test_configure_pod_index.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
import pytest
import time

@pytest.mark.skip(reason='API bug reported')
class TestCreatePodIndex():
def test_create_pod_index(self, client, ready_pod_index):
class TestConfigurePodIndex():
def test_configure_pod_index(self, client, ready_pod_index):
time.sleep(30) # Wait a little more, just in case.
client.configure_index(ready_pod_index, replicas=1, pod_type='p1.x1')

0 comments on commit c84ea97

Please sign in to comment.