runit Questions
3
Solved
I'm trying to set up runit and logging on my debian wheezy VM. So far I've managed to get gunicorn service to start by following this setup:
sudo mkdir /etc/sv/gunicorn
sudo vi /etc/sv/gunicorn/ru...
2
Solved
How can I automatically generate test cases in RUnit?
For example, let's say I have a simple sum() function:
sum <- function(x, y) {
return (x + y)
}
I would like to test this function on ...
1
Solved
In a unit test I start a helper function (generating test data) with:
set.seed(1)
I was developing the unit test interactively like this:
source('tests/runit.functions.R');test.something()
Bu...
1
© 2022 - 2024 — McMap. All rights reserved.