Skip to content

Commit

Permalink
fix format
Browse files Browse the repository at this point in the history
Signed-off-by: Achal Shah <[email protected]>
  • Loading branch information
achals committed Aug 4, 2021
1 parent 8f2389c commit c1cc8ad
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 0 additions & 3 deletions sdk/python/tests/integration/e2e/test_universal_e2e.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,8 @@
from tests.integration.feature_repos.test_repo_configuration import parametrize_e2e_test


# @pytest.mark.integration
# @pytest.mark.parametrize("config", FULL_REPO_CONFIGS)
@parametrize_e2e_test
def test_e2e_consistency(fs: FeatureStore):
# with construct_feature_store(config) as fs:
run_offline_online_store_consistency_test(fs)


Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import random
import time
from typing import Optional

import pandas as pd
Expand Down Expand Up @@ -39,7 +40,7 @@ def create_data_source(
event_timestamp_column="ts",
created_timestamp_column="created_ts",
) -> DataSource:
self.table_name = f"{name}_{random.randint(1000, 9999)}"
self.table_name = f"{name}_{time.time_ns()}_{random.randint(1000, 9999)}"
aws_utils.upload_df_to_redshift(
self.client,
self.offline_store_config.cluster_id,
Expand Down

0 comments on commit c1cc8ad

Please sign in to comment.