Skip to content

Commit

Permalink
Set 5 tests to ignore because of DynamoRaaS removed (#2314)
Browse files Browse the repository at this point in the history
* Change RevitAPI path to match D4R CICD

* update version to 27 resolve CICD break

* resolve Nugets NET47 updates

* Revert "Merge pull request #1999 from ksobon/3dview-wrapper-2018"

This reverts commit 535c8ba.

* Delete DynamoPlayer from D4R CICD

* update version to 30

* Set 5 tests to ignore because of DynamoRaaS removed

* Add Change Log to track each change in version upgrade
  • Loading branch information
ZiyunShang authored and AndyDu1985 committed Dec 18, 2018
1 parent 64a0587 commit ba48993
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 5 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
## 0.0.30
* Remove Simple RaaS from test base.
* Update DynamoCoreRuntime version to resolve ASM upgrade - Libg_225_0_0.

## 0.0.29
* The PR#1999 3dview-wrapper has been reverted due to it is a API break change, will merge it in next Major release.
* Remove Dynamo RaaS.
3 changes: 2 additions & 1 deletion test/Libraries/RevitIntegrationTests/MigrationTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,11 @@ private void TestMigration(string filename)
}
}

[Test]
[Test, Ignore]
[TestModel(@".\empty.rfa")]
public void TestMigration_Analyze_Daylighting()
{
// DynamoRaaS was removed from DynamoRevit, this test can no longer run.
TestMigration(@".\Migration\TestMigration_Analyze_Daylighting.dyn");
}

Expand Down
13 changes: 9 additions & 4 deletions test/Libraries/RevitIntegrationTests/RenderingAsAServiceTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,11 @@ namespace RevitSystemTests
[TestFixture]
public class RenderingAsAServiceTests : RevitSystemTestBase
{
[Test]
[Test, Ignore]
[TestModel(@".\empty.rfa")]
public void CanOpenDaylightingMinimalSample()
{
// DynamoRaaS was removed from DynamoRevit, this test can no longer run.
var model = ViewModel.Model;
string samplePath = Path.Combine(workingDirectory, @".\Samples\DaylightingMinimal.dyn");
string testPath = Path.GetFullPath(samplePath);
Expand All @@ -26,20 +27,22 @@ public void CanOpenDaylightingMinimalSample()
AssertNoDummyNodes();
}

[Test]
[Test, Ignore]
[TestModel(@".\empty.rfa")]
public void CanOpenSimpleCloudRender()
{
// DynamoRaaS was removed from DynamoRevit, this test can no longer run.
string samplePath = Path.Combine(workingDirectory, @".\Samples\SimpleCloudRender.dyn");
string testPath = Path.GetFullPath(samplePath);
ViewModel.OpenCommand.Execute(testPath);
AssertNoDummyNodes();
}

[Test]
[Test, Ignore]
[TestModel(@".\empty.rfa")]
public void CanOpenDaylightingExtractingData()
{
// DynamoRaaS was removed from DynamoRevit, this test can no longer run.
var model = ViewModel.Model;
string samplePath = Path.Combine(workingDirectory, @".\Samples\DaylightingExtractingData.dyn");
string testPath = Path.GetFullPath(samplePath);
Expand All @@ -49,10 +52,12 @@ public void CanOpenDaylightingExtractingData()
AssertNoDummyNodes();
}

[Test]
[Test, Ignore]
[TestModel(@".\empty.rfa")]
public void CanOpenDaylightingandAnalysisDisplay()
{
// DynamoRaaS was removed from DynamoRevit, this test can no longer run.

//Analyze nodes do not resolve in daylight sample files.
//http://adsk-oss.myjetbrains.com/youtrack/issue/MAGN-3757
var model = ViewModel.Model;
Expand Down

0 comments on commit ba48993

Please sign in to comment.