Questions tagged [runner]
250 questions
0
votes
1 answer
How to run a job every 6 hours in gitlab-ci.yml (or run all jobs)
I know this seems to be a copy of this question, but the answer for that question doesn't solves my purpose.
I don't want to run a curl command in my system. Instead I need Gitlab to take care of running the job every 6 hours. I came across…

Rajasekar
- 18,392
- 34
- 106
- 137
0
votes
1 answer
Trouble running mbUnit 2 tests in SubSonic 2.1
I'm still using Subsonic 2 for a few of my projects. Wanting to hack it a little.
I've got the latest pull from the GIT repo, I'm using VS2008 Pro.
Looking in the SubSonic.Test project, the mbUnit dll referenced has a description of…

Ben McIntyre
- 1,972
- 17
- 28
0
votes
1 answer
LoadRunner should be with in AWS or OutSide of AWS?
I was trying to setup test environment for Performance testing using Load Runner, of a Multi tenant application hosted on AWS.
My question is, Can I run the LR tests from AWS and test an application which is also hosted on AWS. (Same data center but…

RamGunta
- 1
0
votes
1 answer
JUnit TestNotFound Exception
I created test in Eclipse with annotation test and ran cleanInstall. Then tried to run it in JSystem Runner but TestNotFound Exception Was Found.
The test was found in JSystem But failed to run with TestNotFound - Seems like code or something wasn't…

Sherein
- 947
- 1
- 11
- 23
0
votes
3 answers
How to make a Jlabel addText from a Class method repeatedly?
I tried swingwoker , but it will update one time only ... http://piggyman007.blogspot.com/2010/04/java-swingworker-multithread.html
package smartOfficeJava;
import java.awt.event.KeyEvent;
import java.awt.event.ActionListener;
import…

wizztjh
- 6,979
- 6
- 58
- 92
0
votes
1 answer
Disable option Grid Orbeon
I am using a repeated grid, as follows:
Is it possible to disable the options in the red square, and only keep the button in the green square for users to add new items.

Alejandro Guerrero
- 17
- 5
0
votes
1 answer
Parametrize Cucumber Runner class
My runner class looks like this:
@RunWith(Cucumber.class)
@CucumberOptions(
plugin = { "pretty", "html:target/cucumber", "json:target/cucumber.json" },
glue = "glue path",
features = "feature path",
tags = {"@tags"}
…

SeleniumLearner
- 31
- 6
0
votes
1 answer
CucumberRunner show progress of how many scenarios left to be excecuted
I have a lot of Acceptance tests that runs with CucumberRunner. When it starts I have no idea in awhile how many scenarios left to be executed. Is there any way how i can print in the terminal like:
Scenario(10 of 1000) Call A() will add new…

user3673948
- 99
- 1
- 2
- 9
0
votes
1 answer
Gitlab Ci: automatically execute before_script actions
I have the following .gitlab-ci.yml file
before_script:
- 'which ssh-agent || ( apt-get update -y && apt-get install openssh-client -y )'
- eval $(ssh-agent -s)
- ssh-add /root/gitlab-runner/.ssh/id_rsa
- mkdir -p ~/.ssh
- '[[ -f…

Alex. b
- 669
- 2
- 10
- 18
0
votes
1 answer
Task runner is not running on my local machine
I am running task runner to perform the defined task, while running it am getting exception telling that can't upload log files to s3. After debugging the task runner application I found that, it will use ACL option to upload task runner log files…

Ramanjaneya Reddy
- 33
- 6
0
votes
2 answers
Unity camera following rolling ball. No rotation and no moving in Z-axis on camera
So, i'm building a 3D runner and i've got a lot of problems making the camera following the ball. I've been on google for a few hours and can't find anything that's not outdated or fills in the things I need. I want a camera that follows my ball but…

BelgianWizard
- 99
- 1
- 4
- 11
0
votes
1 answer
Length cannot be less than zero. (NUNIT GUI RUNNER)
I am using NUnit GUI Runner to execute my Test suite developed in Selenium Webdriver C#.
Everytime I am getting error Length cannot be less than zero.
If I change the relative path with absolute path then it is working fine. So is there any…

AJIT KUMAR
- 1
- 1
0
votes
2 answers
Need example of how to specify start path and filename in Cloud9-IDE (I don't want to use index.php)
I need to specify the filename and start path config settings so that when I run my php project it will start with the correct php file and look in the right place (not the default index.php). However in cloud9 it doesn't look like the htaccess is…

Marley
- 61
- 7
0
votes
2 answers
How do I create a runner for this program? (To test it)
I am writing a program that counts the amount of vowels in a string and if there are more vowels than consonants, it returns true. If not, false. This is a homework assignment, but the runner is not part of it. I want to test to see if my program…

Nicole I.
- 87
- 1
- 3
- 10
0
votes
1 answer
How to avoid ignore tests if I use inner classes for unit testing architecting?
I have following architecture of unit test:
@RunWith(Enclosed.class)
public class ProductTest {
@RunWith(MockitoJUnitRunner.class)
public static abstract class Base {...}
public static class Test1 extends Base{
@Test
…

gstackoverflow
- 36,709
- 117
- 359
- 710