Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9de6f7b commit e9e5c60Copy full SHA for e9e5c60
src/embed_tests/Python.EmbeddingTest.csproj
@@ -102,6 +102,7 @@
102
<Compile Include="TestPyWith.cs" />
103
<Compile Include="TestRuntime.cs" />
104
<Compile Include="TestPyScope.cs" />
105
+ <Compile Include="TestsSuite.cs" />
106
</ItemGroup>
107
<ItemGroup>
108
<ProjectReference Include="..\runtime\Python.Runtime.csproj">
src/embed_tests/TestsSuite.cs
@@ -0,0 +1,18 @@
1
+using NUnit.Framework;
2
+using Python.Runtime;
3
+
4
+namespace Python.EmbeddingTest
5
+{
6
+ [SetUpFixture]
7
+ public class TestsSuite
8
+ {
9
+ [OneTimeTearDown]
10
+ public void FinalCleanup()
11
12
+ if (PythonEngine.IsInitialized)
13
14
+ PythonEngine.Shutdown();
15
+ }
16
17
18
+}
0 commit comments