Skip to content

Commit

Permalink
Fixed integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
axelstudios committed May 29, 2024
1 parent 3234595 commit 65b6ffe
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
8 changes: 2 additions & 6 deletions tests/test_seed_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,15 @@

# 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):
Expand Down

0 comments on commit 65b6ffe

Please sign in to comment.