Skip to content

Commit

Permalink
Timeout 120 minutes
Browse files Browse the repository at this point in the history
  • Loading branch information
ricaun committed Sep 4, 2024
1 parent 83c06ac commit 751975c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [1.3.7] / 2024-09-04
### Console
- Change timeout to 120 minutes in the `RevitTestUtils`.

## [1.3.6] / 2024-08-30
### TestAdapter
- Remove log in the `LocalFileExists` in the `ApplicationUtils`.
Expand Down Expand Up @@ -451,6 +455,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- [x] TestsFail

[vNext]: ../../compare/1.0.0...HEAD
[1.3.7]: ../../compare/1.3.6...1.3.7
[1.3.6]: ../../compare/1.3.5...1.3.6
[1.3.5]: ../../compare/1.3.4...1.3.5
[1.3.4]: ../../compare/1.3.3...1.3.4
Expand Down
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<Project>
<PropertyGroup>
<Version>1.3.6</Version>
<Version>1.3.7-alpha</Version>
</PropertyGroup>
</Project>
2 changes: 1 addition & 1 deletion ricaun.RevitTest.Console/Revit/Utils/RevitTestUtils.cs
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ public static void CreateRevitServer(
}
};

for (int i = 0; i < 10 * 60; i++)
for (int i = 0; i < 120 * 60; i++)
{
Thread.Sleep(1000);

Expand Down

0 comments on commit 751975c

Please sign in to comment.