Skip to content

Commit

Permalink
tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Bakanych committed Sep 7, 2018
1 parent 1c84fdc commit 3470d37
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 15 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Expand Up @@ -258,4 +258,6 @@ paket-files/

# Python Tools for Visual Studio (PTVS)
__pycache__/
*.pyc
*.pyc

*.feature.cs
5 changes: 4 additions & 1 deletion Allure.Specflow.sln
Expand Up @@ -5,9 +5,12 @@ VisualStudioVersion = 15.0.27004.2002
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Allure.SpecFlowPlugin.Tests", "Allure.SpecFlowPlugin.Tests\Allure.SpecFlowPlugin.Tests.csproj", "{69C462C3-E955-4B0C-9F1F-2ED5AE1BF270}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tests.SpecRun", "Tests.SpecRun\Tests.SpecRun.csproj", "{9F2B97FF-6798-4A69-9520-CE3491396F3F}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Tests.SpecRun", "Tests.SpecRun\Tests.SpecRun.csproj", "{9F2B97FF-6798-4A69-9520-CE3491396F3F}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{5193EF5B-82B9-4280-AA66-D108C378D4F4}"
ProjectSection(SolutionItems) = preProject
nuget.config = nuget.config
EndProjectSection
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Allure.SpecFlowPlugin", "Allure.SpecFlowPlugin\Allure.SpecFlowPlugin.csproj", "{6EE3D382-2BB5-4883-97AD-6D8A3E59A3F3}"
EndProject
Expand Down
2 changes: 1 addition & 1 deletion Tests.SpecRun/App.config
Expand Up @@ -9,7 +9,7 @@
<specFlow>
<plugins>
<add name="Allure" type="Runtime" />
<add name="SpecRun" />
<add name="SpecRun" path="..\packages\specrun.specflow.2-4-0\1.8.2\lib\net45" />
</plugins>
<stepAssemblies>
<stepAssembly assembly="Allure.SpecFlowPlugin" />
Expand Down
3 changes: 3 additions & 0 deletions Tests.SpecRun/Tests.SpecRun.csproj
Expand Up @@ -27,6 +27,9 @@
<ProjectReference Include="..\Allure.SpecFlowPlugin\Allure.SpecFlowPlugin.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="allureConfig.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Default.srprofile">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
Expand Down
11 changes: 0 additions & 11 deletions Tests.SpecRun/packages.config

This file was deleted.

2 changes: 1 addition & 1 deletion Tests.SpecRun/runtests.cmd
@@ -1,5 +1,5 @@
@pushd %~dp0
@set profile=%1
@if "%profile%" == "" set profile=Default
..\..\..\packages\SpecRun.Runner.1.8.2\tools\SpecRun.exe run %profile%.srprofile "/outputFolder:%~dp0/TestResults/" /log:specrun.log %2 %3 %4 %5
SpecFlowPlusRunner\SpecRun.exe run %profile%.srprofile "/outputFolder:%~dp0/TestResults/" /log:specrun.log %2 %3 %4 %5
@popd
7 changes: 7 additions & 0 deletions nuget.config
@@ -0,0 +1,7 @@
<configuration>
<config>
<!-- <add key="dependencyVersion" value="Highest" /> -->
<add key="globalPackagesFolder" value="packages" />
<!--<add key="repositoryPath" value="packages" />-->
</config>
</configuration>

0 comments on commit 3470d37

Please sign in to comment.