diff --git a/.github/workflows/codecov.yml b/.github/workflows/codecov.yml index d795d8f..31f0733 100644 --- a/.github/workflows/codecov.yml +++ b/.github/workflows/codecov.yml @@ -4,7 +4,7 @@ jobs: build: strategy: matrix: - os: [macos-latest, windows-latest, ubuntu-latest] + os: [macos-latest] #, windows-latest, ubuntu-latest] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v3 diff --git a/test/src/systemtest/e2e_test.dart b/test/src/systemtest/e2e_test.dart index 69eb537..96d73fe 100644 --- a/test/src/systemtest/e2e_test.dart +++ b/test/src/systemtest/e2e_test.dart @@ -216,7 +216,7 @@ Future createFlutterPlugin({ for(final task in tasks) { final res = await task.execute(root); - //assert(res.isOk, res.message); + assert(res.isOk, res.message); } }