goodspark

Results 29 issues of goodspark

Resolves #53 Convenience function so users don't have to do: ```go s := string(v.GetStringBytes("key", "a", "b")) ```

Could we get a function to just return the `string` type instead of a byte slice? I often just need the `string` and noticed `GetStringByte` is [actually converting the underlying...

enhancement

Because of issues similar to #21, it would be nice to have a comment we can use to disable/suppress errors for certain fixtures. Here's a minimal example: ```python @pytest.fixture def...

### Steps you follow to reproduce the error: 1. Generate a swagger file from the following proto file: ```proto syntax = "proto3"; package mytest; import "protoc-gen-swagger/options/annotations.proto"; service MyTest { rpc...

enhancement
help wanted

Issue Type: Performance Issue I'm not sure what the cause is yet or how to reliably recreate it. Some info: - I'm running VS Code locally on my Windows 10...

info-needed
freeze-slow-crash-leak
windows

It'd be nice if this was provided as a [pre-commit hook](https://pre-commit.com/) so that people can easily integrate it into their local and CI runs. https://pre-commit.com/#new-hooks

**Describe the bug** Playground doesn't work. **To Reproduce** Steps to reproduce the behavior: 1. Go to the playground (linked on the homepage): https://www.typescriptlang.org/play/index.html#code/PTAEBUAsEsGdTqAhqADgGyQTwOYCcB7AVwDsATUAd0gFM8bQtjQBjJE0GgDwwPtAAutUABF2OOqABSAZQBQIUAEEACgElk5ULEhJ+LAmQawkAWww1YAOlAB5EiwZCG9CumglLoAEY10BSlAAIjJxOiCFMHYKINQkISDkfhwCT0FaDiYiVnZtAT0BQQJOHn9+SjxoAQ8cSNA8InQvADM+UTC8Zugm6zk5aHM+QoBvUFCSCTwAGlBmpG6Z0z0AazIAkhnKPQ3QU0sTCVAAX1nCU2DxyYiB1CHQACpkeDihU4Jz2PjICLrVDXpmnQaA4aAAuUCQAQCVCwUEgS50KywLCwAQ0UywYAAK0xAKBIKskNM6D6BhIqLQeFAAF4xh0rDgqpAiN4rKg8H1FAAxDwUYiFaDNbTvBhxPDVFiNPSzbpeXQANwYLF0ExoFA86UQKgASqA5GSKWtJXsSPlqqkaXTVXgGVUrF0mgBZeLKgAUQXu92A9yspjIQQAlPrUhTlWF-DhLQibYyBPbZc6BG6ggBhAASSgAcgBxACiABlbNnff6gwbCnEWMskBIpLALbTo7a4w6aInk5XqxIrDjUoHg+TCv4q62o-TY-GnS7IO6sNsrMPlkEZp8qzWaABaRc9+skft1bWNSycsBQdjLWYEdDLeCtKlLZY1MYEFisFUSWD9IWuo1EE1m6BUisNUqjVANQGGORQGg3Z9nXd0zxIG9QA3UAAHUGFBWgCnBYgqQAbV-f89GgdhYAAXVdSFoThYBKHoqwKlA5wjWsPgcGAAMAEJ+yOE9QG1dFeTQGgCAsIpQCIVBQjRUBF1bT9BVAV1O3XOsgNMQxBWgNVQAAMj00AuPk2VfS0rowIgqCYK2PASAQmB4B1XZzJ0ihVO7Xsdm8IhChIAhCmcOSX2WVteP4tCMnSIEkgYJBUFQDcw1VeBogQQoiHgfzChQZyljwZZdKQeABEqeVSPQGZuFQGgWAEOpnH4ARil8UB0yzPNC2zN8wl6ctBDKirnNpdkrG8QwsCsDwWHQIgjFgd1SugcqkHQfslNdLjkokCNgLIUCKAMoylpW9AdXAyDoLmbp3UzYp2pzAsi2QMgjDIKxwrqO7QGcxBmuKWAlnQdAJNsvB2BytA9BrcHUEgUA2gEShigIIVYD-fKsC-ZTRvGshJqaCZXmpEnQAABgu6zrvQd0VCaYq4te5AxksFhKlQc0OGaxg8J+7UPqDPjFCUdAthRThySIco4tgWBoBwDh6z2VInGKXLtRmJSqlS7GVJtYq5YVmgGBJ2kSEadBKeg-q9iEQxLVG6oBCaKaHFm+b3TQtQVEDUAAH4qG2UBwWp6zbcgQxafp2AZcNxWRRViS9jwQ4hC1DXND5DnAJIVb0CwBA3bm0VRPE6gAYjxoKHocqaEoAW5D4upc0lprdEhzBfBB3R4F8YFtBoeqNqbWNmVZOB0ZoBckC76xCZwYnSYpqzoNs+ygigdPny8bKISQRVNALzu-GscKgA 2. Click Run 3. It fails with:...

bug

**Describe the bug** Some links in the reference docs lead to nothing. **To Reproduce** Steps to reproduce the behavior: 1. Go to https://danger.systems/js/reference.html#GitDSL 2. Click on the link for 'Chainsmoker'...

bug

kubectl diff exits with code 1 if a diff is found. Because of the exit flag, this causes the bazel kubectl diff action to exit early. So this attempts to...

size/S
lgtm
approved
ok-to-test

- Python 3.7 - pytest==4.2.0 - freezegun==0.3.11 ```python import pytest from freezegun import freeze_time from datetime import timedelta @pytest.fixture def freezer(): with freeze_time( # ignore=['_pytest.runner'] ) as f: yield f...