samth
2018-9-17 13:45:28

@ben is there a reason you don’t merge commits in a way that shows up as a merge on github?


ben
2018-9-17 15:20:27

@samth I’m not sure what you mean. (1) I want to avoid merge commits (2) I prefer pulling the commit onto my master and testing a little instead of clicking the “squash and merge” button"


lexi.lambda
2018-9-17 15:23:59

@ben If you rebase your local branch, then force push to update the remote branch before pushing the commit to master, then GH will mark the PR as merged automatically.


ben
2018-9-17 15:24:58

should I always do that? its hard to do if the remote branch isn’t mine


lexi.lambda
2018-9-17 15:26:01

You can often push to the remote branch even if it isn’t yours, because by default GH grants push access to a branch used to submit a PR.


lexi.lambda
2018-9-17 15:26:36

(This is a little-known feature, and my guess is that many contributors don’t actually know they’ve done this, but it’s what the “Allow edits from maintainers” checkbox means in the PR sidebar.)


samth
2018-9-17 15:34:05

@ben I think “do testing locally and then click the button” seems like a reasonable approach


ben
2018-9-17 15:34:21

ok


leif
2018-9-17 15:53:19

@mflatt In case you aren’t aware of it: https://github.com/racket/pict/issues/42


leif
2018-9-17 15:53:59

It looks like its related to us updating cairo/pango, but when using pdf-dc% directly the issue goes away.


soegaard2
2018-9-17 17:25:22

Nothing much. Documentation mostly.


mflatt
2018-9-17 17:45:41

Thanks - I’ve seen. I’m just several tasks away from being able to do anything about it right now.


andreiformiga
2018-9-17 17:46:24

right


andreiformiga
2018-9-17 17:46:33

I’ll see if I can contribute


soegaard2
2018-9-17 17:46:43

that would be great


philip.mcgrath
2018-9-17 22:01:18

I’ve renamed a Scribble file documenting a package, and now I’m getting warnings from raco setup of the form: “WARNING: duplicate tag: [some tag] in: <unknown> in: [the document I just renamed]”. Is there a cache somewhere that I need to delete? I’m already using the --doc-index flag for raco setup.


peter
2018-9-17 23:46:56

@peter has joined the channel


dan.ml.901
2018-9-17 23:52:54

@dan.ml.901 has joined the channel


dan.ml.901
2018-9-17 23:54:49

I’m using raco setup on a local collection and it’s ignoring a .scrbl file I have in the collection. How can I get it to pick it up and generate the docs?


dan.ml.901
2018-9-17 23:55:49

i’m guessing i just need some reality check


philip.mcgrath
2018-9-17 23:55:52

@dan.ml.901 Have you listed the file under the scribblings key in an info.rkt file?


dan.ml.901
2018-9-17 23:55:57

yes


philip.mcgrath
2018-9-17 23:57:04

Also, is this a multi-collection package? (That’s a problem someone else had.)


dan.ml.901
2018-9-17 23:57:28

no… it’s pretty simple



philip.mcgrath
2018-9-18 00:00:28

That looks right. Something else you might check is if the package is installed in user-specific or installation-wide scope: if it is user-specific, it won’t show up on the installation-wide listing. (That has thrown me off sometimes.) You could also try adding the --doc-index flag to raco setup.


dan.ml.901
2018-9-18 00:00:55

hmm it’s not installed at all, that’s probably it


dan.ml.901
2018-9-18 00:04:08

yeah that was it


pocmatos
2018-9-18 06:52:57

Is anybody aware of an exporter of rackunit test results as a JUnit compatible XML file?