Skip to content

Commit

Permalink
test: skipping test cases until I can figure it out how to mock nba_a…
Browse files Browse the repository at this point in the history
…pi endpoint requests
  • Loading branch information
ThiagoPanini committed Sep 12, 2023
1 parent 67f675b commit 75bfd40
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/test_players.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
import pandas as pd


# @pytest.mark.skip(reason="Figuring out how to mock nba_api endpoints")
@pytest.mark.skip(reason="Figuring out how to mock nba_api endpoints")
@pytest.mark.players
@pytest.mark.get_players_info
def test_players_info_is_delivered_as_a_pandas_dataframe(
Expand All @@ -26,7 +26,7 @@ def test_players_info_is_delivered_as_a_pandas_dataframe(
assert isinstance(df_active_players_data, pd.DataFrame)


# @pytest.mark.skip(reason="Figuring out how to mock nba_api endpoints")
@pytest.mark.skip(reason="Figuring out how to mock nba_api endpoints")
@pytest.mark.players
@pytest.mark.get_players_info
def test_players_info_dataframe_has_a_set_of_expected_columns(
Expand All @@ -52,7 +52,7 @@ def test_players_info_dataframe_has_a_set_of_expected_columns(
assert current_cols == expected_cols


# @pytest.mark.skip(reason="Figuring out how to mock nba_api endpoints")
@pytest.mark.skip(reason="Figuring out how to mock nba_api endpoints")
@pytest.mark.players
@pytest.mark.get_players_info
def test_total_of_active_players_is_less_than_total_of_all_players(
Expand Down

0 comments on commit 75bfd40

Please sign in to comment.