1
- import os
2
1
import shutil
3
2
from filecmp import cmpfiles , dircmp
4
3
from pathlib import Path
5
- import sys
6
- from typing import Callable , Dict , List , Optional , Set
4
+ from typing import Dict , List , Optional , Set
7
5
8
6
import pytest
9
7
from click .testing import Result
10
8
from typer .testing import CliRunner
11
9
12
10
from openapi_python_client .cli import app
13
- from .end_to_end_live_tests import live_tests_3_x
14
-
15
11
16
12
17
13
def _compare_directories (
@@ -87,7 +83,6 @@ def run_e2e_test(
87
83
golden_record_path : str = "golden-record" ,
88
84
output_path : str = "my-test-api-client" ,
89
85
expected_missing : Optional [Set [str ]] = None ,
90
- live_tests : Optional [Callable [[str ], None ]] = None ,
91
86
) -> Result :
92
87
output_path = Path .cwd () / output_path
93
88
shutil .rmtree (output_path , ignore_errors = True )
@@ -102,13 +97,6 @@ def run_e2e_test(
102
97
_compare_directories (
103
98
gr_path , output_path , expected_differences = expected_differences , expected_missing = expected_missing
104
99
)
105
- if live_tests :
106
- old_path = sys .path .copy ()
107
- sys .path .insert (0 , str (output_path ))
108
- try :
109
- live_tests ()
110
- finally :
111
- sys .path = old_path
112
100
113
101
import mypy .api
114
102
@@ -143,11 +131,11 @@ def _run_command(command: str, extra_args: Optional[List[str]] = None, openapi_d
143
131
144
132
145
133
def test_baseline_end_to_end_3_0 ():
146
- run_e2e_test ("baseline_openapi_3.0.json" , [], {}, live_tests = live_tests_3_x )
134
+ run_e2e_test ("baseline_openapi_3.0.json" , [], {})
147
135
148
136
149
137
def test_baseline_end_to_end_3_1 ():
150
- run_e2e_test ("baseline_openapi_3.1.yaml" , [], {}, live_tests = live_tests_3_x )
138
+ run_e2e_test ("baseline_openapi_3.1.yaml" , [], {})
151
139
152
140
153
141
def test_3_1_specific_features ():
0 commit comments