- Notifications
You must be signed in to change notification settings - Fork 5
rename job #21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
rename job #21
Conversation
OK, will try to fix them.. there are mostly floating point rounding issues. |
Done with 3.0 / 3.1. |
ST_3DLineInterpolatePoint seems only be supported on postgis.version >= 3.0.
Is there some attribution in NUnit can divide tests into different groups with a strategy like blacklist,eg [NotSupportOn3.0][NotSupportOn3.1],then we can test them separately in workflow's yml files? |
Probably yes, something like Platform attribute |
Seems the category attribution is the one. Still no idea how to do it.😂 |
Some ideas here: dotnet test --filter TestCategory!~NotSupportOn2.5 dotnet test --filter TestCategory!~NotSupportOn3.0 dotnet test --filter TestCategory!~NotSupportOn3.1 Strategy B dotnet test --filter TestCategory=MinVersion2.5 dotnet test --filter TestCategory=MinVersion3.0 dotnet test --filter TestCategory=MinVersion3.1 |
How about: Run for 2.5, exclude 3.0 tests: (is there a method to exclude both 3.0, 3.1 using 'contains string' expression ?) |
OK.😀 |
Problem here. select st_envelope("wkt here balabalalba...") will be failed in PostGIS 2.5 but succeed in PostGIS 3.x. This feature will split all tests to two parts with duplicated code.(Actually many tests in PostGIS 2.5 failed beacause this) So is there one way can add this feature without duplicated unit test? |
There is another possible solution: drop tests for PostGIS 2.x at this moment and focus on extending support for 3.x (there is 3.1 version already). The 3.0 version is mentioned in README |
Agree. There are so many methods not implemented in pg3.x. |
Many tests failed.
The number of failed test is different on various postgis,eg
postgis 3.1
postgis 3.0
postgis 2.5
The test log is like