Questions tagged [runner]
250 questions
1
vote
1 answer
How run test suite JUnit5-based?
I want to create runner for my test classes that based on JUnit-5.
In the first I tried to use with this construction.
@RunWith(JUnitPlatform.class)
@SelectClasses(UserAPITest.class)
public class UserAPITestRunner {
}
But in doesn't work. If I…

robert0801
- 140
- 1
- 12
1
vote
1 answer
Using runner package to summarise groups
I have a table of house prices and sale dates. I want to calculate the rolling median price over a time window of 365 days using the runner package. I only want one median price per date.
My problem is when I try the below code, I get more than one…

Wilze
- 53
- 5
1
vote
3 answers
How to calculate running slope for rlm using runner?
I have a data frame "customers" build of customer id, month and total purchases that month.
I'm trying to calculate a running slope for a window of 12 months using robust regression.
I have tried the following:
Coef <- function(x)…

Alex
- 149
- 1
- 1
- 11
1
vote
0 answers
Rails runner does not find file, Rails version 5.1.3
I have a regular Rails project that is up and running fine, using Rails 5.1.3.
I recently discovered Rails runner and tried it along the documentation (https://guides.rubyonrails.org/command_line.html#rails-runner).
However, my Rails runner seems to…

MDickten
- 105
- 1
- 10
1
vote
1 answer
x509: certificate signed by unknown authority PANIC: Failed to register this runner
ERROR: Registering runner... failed
runner=J4DBd8we
status=couldn't execute POST against https://tarun-labs.local/api/v4/runners:
Post https://tarun-labs.local/api/v4/runners: x509:
certificate signed by unknown authority PANIC:
Failed…

Tarun Virmani
- 11
- 1
- 2
1
vote
1 answer
Gitlab Runner - Same folder (path) for each build
I am using gitlab-runner for my CI tasks on centos 7. I have to build the project and then run it.
In my different xml and .sh files I have different paths which refer to some other files in some directory. For example a file can have path like…

Muhammad Saleem
- 51
- 1
- 10
1
vote
1 answer
Ownership issue with Shell Runner
I'm trying to setup a pipeline on my django project with a shell runner.
I have 2 jobs :
one to build my image
one to run the tests.
The first build succeeded but when during my second job I have an ownership issue on my jobs folder :
warning:…

A. Ecrubit
- 561
- 6
- 20
1
vote
1 answer
Gitlab CI takes 2min to update
I have a self-hosted instance of gitlab and a server with a couple of gitlab runners using docker as executors.
When a new CI-job is started, it always takes at least 2minutes before I see the result, but when I check the docker logs of the created…

CyrillC
- 557
- 1
- 3
- 15
1
vote
1 answer
Repeatable task in Kotlin
I am writing desktop app using Kotlin and I want to repeat execution of function for every X seconds.
I found solutions with using android library, there is other option? Maybe something like TaskRunner in Java?
SOLUTION
I used…

ACz
- 567
- 5
- 22
1
vote
1 answer
Cucumber Java Maven - ExtendedCucumberOptions - Features missing steps
I'm facing the next behavior when I run my Runner class in IntelliJ.
This is the pipeline of my project:
src
|_main
|_test
|_java
|_runners
|_TestRunner
|_stepdefs
|_ServiceHooks
|_StepDefinitionsCafest
|_resource
…

nosequeweaponer
- 511
- 10
- 38
1
vote
1 answer
Runner class is not able to pick up the Step defintion file
My Project structure
Hi, I am new to Cucumber and trying to create a dummy project for practice.
As you can see in the project structure I have created step definition file(MenuTest) in com.netreveal.testcases package, but when trying to run it by…

nitin chauhan
- 15
- 6
1
vote
0 answers
gradle tests filtering does not work for Parameterized adapter
gradle tests filtering does not work for Parameterized adapter. e.g.,
@RunWith(Parameterized.class)
public class FooTest {
@Test
public void testFoo() {
}
}
Run one test method for parameter 1:
gradle test --tests…

eastwater
- 4,624
- 9
- 49
- 118
1
vote
0 answers
SonarQube MSbuild runner breaks build
I'm having a problem with failed build. Solution builds just fine by itself, but when I try to analyze and start with SonarQube.Scanner.MSBuild.exe begin my solution keeps failing with error
C:\Program Files (x86)\Microsoft Visual…

zura
- 44
- 6
1
vote
1 answer
LIBGDX - collision issue and sliding effect issue
I'm creating a runner game, here is a screenshot :
screenshot1
I divided my world in chunks, and i'm experiencing a collision issue. As you can see (in very small) on the bottom left, I have multiple grounds and they're moving to the left. Sometimes…

ShellCode
- 1,072
- 8
- 17
1
vote
0 answers
Celery start task ones, but second task not run
I have one task, but task is long(~30m).When I do fresh start,celery run first sended task, but then send tasks but not start process. I'm using celery cron("beat") to run scheduled tasks.
For backend and broker use PostgreSql+SqlAlchemy
Run…

FalKeN_Ua
- 11
- 5