Paul Zabelin

Results 41 comments of Paul Zabelin

It might not work as it is on IP6 Only networks. I think, code should be using [sockaddr_in6](sockaddr_in6) for that. See for example, Alamofire Network Reachability Manager: https://github.com/Alamofire/Alamofire/blob/master/Source/NetworkReachabilityManager.swift#L125

filed support ticket: https://codecov.freshdesk.com/support/tickets/5501

also tried installing muter from source, same result also tried running muter on [ExampleMacOSApp](https://github.com/muter-mutation-testing/muter/tree/master/Repositories/ExampleMacOSApp): ``` _____ _ | | _ _ | |_ ___ ___ | | | || |...

Please add support for GitHub Actions, thank you!

There are couple of GitHub API: [statuses](https://developer.github.com/v3/repos/statuses/) and [checks](https://developer.github.com/v3/checks/). Another available option is to use badge svg, which is essentially XML file: For example our project badge: https://github.com/sparta-science/connect/workflows/self-hosted-test/badge.svg is in...

Great, that's the perfect use case. Just pass UIKit coordinates of QR code corners and corners of destination view. You will get the transformation. Then apply that transformation to get...

``` describe("dataTaskPublisher") { var session: URLSession! beforeEach { session = .init(configuration: .default) } context("success") { itBehavesLike(CombinePublisher.self) { session .dataTaskPublisher(for: URL(fileURLWithPath: #filePath)) .shouldReceive(numberOfTimes: 1) .before(timeout: 10) } } context("failure retried sends...

we somehow had to do a staircase of ignored and non ignored: ``` !/MyProject.xcodeproj/project.xcworkspace /MyProject.xcodeproj/project.xcworkspace/* !/MyProject.xcodeproj/project.xcworkspace/xcshareddata /MyProject.xcodeproj/project.xcworkspace/xcshareddata/* !/MyProject.xcodeproj/project.xcworkspace/xcshareddata/swiftpm /MyProject.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/* !/MyProject.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved ```