Skip to content

Add test for Windows with AppVeyor

decentral1se requested to merge matsubara0507:win-test-with-appveyor into master

Created by: matsubara0507

about #127 (closed) I wrote appveyor.yml with reference to this file.

but, test fail on Windows: https://ci.appveyor.com/project/matsubara0507/tasty-discover/build/1.0.5#L473

modules
    Test discovery
      Discovers tests:                                           FAIL
        expected [Test {testModule = "PropTest", testFunction = "prop_additionAssociative"},Test {testModule = "SubSubMod/PropTest", testFunction = "prop_additionCommutative"}], but got [Test {testModule = "PropTest", testFunction = "prop_additionAssociative"},Test {testModule = "SubSubMod.PropTest", testFunction = "prop_additionCommutative"}]

Reason is that use pathSeparator on mkTest . So, fixed it by using isPathSeparator . ref: https://ci.appveyor.com/project/matsubara0507/tasty-discover/build/1.0.6

Merge request reports