Skip to content

Commit

Permalink
Merge a10dc12 into 9e11fcb
Browse files Browse the repository at this point in the history
  • Loading branch information
idomic committed May 11, 2022
2 parents 9e11fcb + a10dc12 commit e163843
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 9 deletions.
1 change: 1 addition & 0 deletions doc/community/user-stats.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ The data we collect is limited to:
- Information about the different product phases: installation, API calls and errors.
- For users who explicitly stated their email, we collect an email address.


Version updates
---------------
If there's an outdated version, ploomber will alert it through the console every second day in a non-invasive way.
Expand Down
9 changes: 0 additions & 9 deletions tests/cli/test_cloud.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,6 @@ def test_cloud_user_tracked(write_sample_conf):
assert key_val == telemetry.is_cloud_user()


@pytest.mark.xfail(reason="backend needs fix")
def test_get_pipeline(monkeypatch, mock_api_key):
# Write sample pipeline
pid = str(uuid.uuid4())
Expand All @@ -188,7 +187,6 @@ def test_get_pipeline_no_key(tmp_directory, monkeypatch):
assert 'API_Key not valid' in pipeline


@pytest.mark.xfail(reason="backend needs fix")
def test_write_pipeline(mock_api_key):
pid = str(uuid.uuid4())
status = 'started'
Expand Down Expand Up @@ -221,7 +219,6 @@ def test_write_pipeline_no_status_id(mock_api_key):
assert 'No input pipeline status' in res


@pytest.mark.xfail(reason="backend needs fix")
def test_write_delete_pipeline(mock_api_key):
pid = str(uuid.uuid4())
status = 'started'
Expand All @@ -231,7 +228,6 @@ def test_write_delete_pipeline(mock_api_key):
assert pid in res


@pytest.mark.xfail(reason="backend needs fix")
def test_delete_non_exist_pipeline(mock_api_key):
pid = 'TEST_PIPELINE'
res = get_tabular_pipeline(pid)
Expand All @@ -241,7 +237,6 @@ def test_delete_non_exist_pipeline(mock_api_key):
assert 'doesn\'t exist' in res


@pytest.mark.xfail(reason="backend needs fix")
def test_update_existing_pipeline(mock_api_key):
pid = str(uuid.uuid4())
end_status = 'finished'
Expand All @@ -259,7 +254,6 @@ def test_update_existing_pipeline(mock_api_key):
assert pid in res


@pytest.mark.xfail(reason="backend needs fix")
def test_pipeline_write_error(mock_api_key):
pid = str(uuid.uuid4())
end_status = 'error'
Expand All @@ -279,7 +273,6 @@ def test_pipeline_write_error(mock_api_key):


# Get all pipelines, minimum of 3 should exist.
@pytest.mark.xfail(reason="backend needs fix")
def test_get_multiple_pipelines(monkeypatch, mock_api_key):
class CustomTableWrapper(table.Table):
@classmethod
Expand Down Expand Up @@ -334,7 +327,6 @@ def test_get_latest_pipeline(monkeypatch, mock_api_key):
assert pid in pipeline


@pytest.mark.xfail(reason="backend needs fix")
def test_get_active_pipeline(monkeypatch, mock_api_key):
pid = str(uuid.uuid4())
res = write_sample_pipeline(pipeline_id=pid, status='started')
Expand All @@ -349,7 +341,6 @@ def test_get_active_pipeline(monkeypatch, mock_api_key):
assert pid in res


@pytest.mark.xfail(reason="backend needs fix")
def test_get_pipeline_with_dag(monkeypatch, mock_api_key):
dag_mock = Mock(
return_value={
Expand Down

0 comments on commit e163843

Please sign in to comment.