Skip to content

Commit 65b6ffe

Browse files
committed
Fixed integration tests
1 parent 3234595 commit 65b6ffe

File tree

2 files changed

+3
-7
lines changed

2 files changed

+3
-7
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ jobs:
8686
SEED_PM_UN: ${{ secrets.SEED_PM_UN }}
8787
SEED_PM_PW: ${{ secrets.SEED_PM_PW }}
8888
run: |
89-
pytest -m "integration" -s
89+
pytest -m integration -s
9090
- name: Dump docker logs on failure
9191
if: failure()
9292
uses: jwalton/gh-docker-logs@v2

tests/test_seed_client.py

+2-6
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,15 @@
55

66
# Imports from Third Party Modules
77
import os
8-
# import pytest
8+
import pytest
99
import unittest
1010
from datetime import date
1111
from pathlib import Path
12-
from unittest import skipIf
13-
from unittest.mock import patch
1412

1513
# Local Imports
1614
from pyseed.seed_client import SeedClient
1715

18-
# @pytest.mark.integration
19-
20-
16+
@pytest.mark.integration
2117
class SeedClientTest(unittest.TestCase):
2218
@classmethod
2319
def setup_class(cls):

0 commit comments

Comments
 (0)