From 5a48e599cd215a5daf7054e50002e0b75e3a85d6 Mon Sep 17 00:00:00 2001 From: Alex Swindler Date: Wed, 29 May 2024 12:53:57 -0600 Subject: [PATCH] Fixed integration tests --- .github/workflows/ci.yml | 2 +- tests/test_seed_client.py | 7 ++----- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6b1d46c..7e2ee11 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -86,7 +86,7 @@ jobs: SEED_PM_UN: ${{ secrets.SEED_PM_UN }} SEED_PM_PW: ${{ secrets.SEED_PM_PW }} run: | - pytest -m "integration" -s + pytest -m integration -s - name: Dump docker logs on failure if: failure() uses: jwalton/gh-docker-logs@v2 diff --git a/tests/test_seed_client.py b/tests/test_seed_client.py index 6a883e0..baeb588 100644 --- a/tests/test_seed_client.py +++ b/tests/test_seed_client.py @@ -5,19 +5,16 @@ # Imports from Third Party Modules import os -# import pytest +import pytest import unittest from datetime import date from pathlib import Path -from unittest import skipIf -from unittest.mock import patch # Local Imports from pyseed.seed_client import SeedClient -# @pytest.mark.integration - +@pytest.mark.integration class SeedClientTest(unittest.TestCase): @classmethod def setup_class(cls):