We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3234595 commit 65b6ffeCopy full SHA for 65b6ffe
.github/workflows/ci.yml
@@ -86,7 +86,7 @@ jobs:
86
SEED_PM_UN: ${{ secrets.SEED_PM_UN }}
87
SEED_PM_PW: ${{ secrets.SEED_PM_PW }}
88
run: |
89
- pytest -m "integration" -s
+ pytest -m integration -s
90
- name: Dump docker logs on failure
91
if: failure()
92
uses: jwalton/gh-docker-logs@v2
tests/test_seed_client.py
@@ -5,19 +5,15 @@
5
6
# Imports from Third Party Modules
7
import os
8
-# import pytest
+import pytest
9
import unittest
10
from datetime import date
11
from pathlib import Path
12
-from unittest import skipIf
13
-from unittest.mock import patch
14
15
# Local Imports
16
from pyseed.seed_client import SeedClient
17
18
-# @pytest.mark.integration
19
-
20
+@pytest.mark.integration
21
class SeedClientTest(unittest.TestCase):
22
@classmethod
23
def setup_class(cls):
0 commit comments