Skip to content

Commit

Permalink
fix: skip metadata test
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabe-Levin committed Nov 12, 2024
1 parent 92c31ad commit 2320eb4
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions space2stats_api/src/tests/metadata_tests/test_stac_columns.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
import json
import os

import pandas as pd
import pytest


# @pytest.mark.skipif(
# "GITHUB_ACTIONS" in os.environ,
# reason="Skipping in GitHub Actions due to Pandas Dependency",
# )
@pytest.mark.skipif(
"GITHUB_ACTIONS" in os.environ,
reason="Skipping in GitHub Actions due to Pandas Dependency",
)
def test_stac_columns_vs_metadata_xlsx(stac_file_path, metadata_excel_file_path):
# Load the expected column types from the Metadata Content Excel
feature_catalog = pd.read_excel(
Expand Down

0 comments on commit 2320eb4

Please sign in to comment.