Questions tagged [runner]

250 questions
3
votes
1 answer

How to create Runner.xcworkspace in your flutter app?

I have a flutter app that I code in Android Studio. I also have XCode. I would like to test the app on my actual iPhone. I googled, and many stated to simply open the Runner.xcworkspace on Xcode. However, I do not have the Runner.xcworkspace file in…
3
votes
0 answers

How to run collection with data file one row per request, next row per second request and not all rows per each request in postman

In postman collection I have 4 requests and I have csv file with data for each of these requests. I'd like to 1st request uses 1st data row, 2nd request uses 2nd data row and so on. Is there a way to run one row per test? What I want is to test 1…
valen-tina
  • 61
  • 3
3
votes
1 answer

How to run multiple cucumber runners from maven command line

I've 2 CI flows , which flow needs to run it's own cucumber runner RunnerATest RunnerBTest I'm using maven command line to run the tests (mvn test) Is there a way to select a specific Runner from command line ? Thanks
Igal
  • 4,603
  • 14
  • 41
  • 66
3
votes
1 answer

find current git branch while running job in pipeline

how can I find out branch name in a job that is running in the pipeline? I tried git branch all i get is * (detached from ) master
lila
  • 423
  • 1
  • 4
  • 16
3
votes
2 answers

Rails 3 runner not detecting JSON gem?

I'm trying to create Ruby script to run with my Rails 3 environment. However, whenever I run this rubyscript with Rails Runner, I get this error: require 'rubygems' require 'json' @payload = { "message" => "helloworld", "station" =>…
dpigera
  • 3,339
  • 5
  • 39
  • 60
3
votes
1 answer

How to close testcafe runner

I'm using Testcafe runner to execute some tests i got. When everything is finished the console remains executing the script forever. Here is my code: createTestCafe('localhost', 1337, 1338) .then(tc => { testcafe = tc; runner =…
user2849167
  • 273
  • 1
  • 4
  • 14
3
votes
1 answer

How to install two MSI packages with single MSI package using WIX?

I have a scenario to install two MSI packages with single MSI package. For example we have two products to install viz. Sample1.MSI and Sample2.MSI. We need to embed Sample2.MSI package into Sample1.MSI. If we install Sample1.MSI it should install…
DBalaji
  • 61
  • 1
  • 5
2
votes
1 answer

GitHub workflow self-hosted runner configure to pickup multiple tasks at once

I would like to ask, how to configure GitHub workflow self-hosted runner to be able to pickup multiple tasks together. I'm running the GitHub self-hosted runner on Ubuntu 22.04 with docker. Everything is working great, only still I must wait longer…
klaucode
  • 180
  • 1
  • 10
2
votes
1 answer

Gitlab Runner taking Too long to run the pipeline

I had created a specific runner for my gitlab project, its taking too long to run the pipeline. Its is getting stuck in Cypress test mainly. After "All Specs passed" it will not move forward. - build - test build: stage: build image:…
2
votes
1 answer

Postman body: json array from a csv

So I have what's probably a super easy question but can't get my head around it. In the post request body I have a large json file with the format: { "order": { "id":{{orderId}}, "numberofboxes":{{nbrboxes}}, "partnbrs [ { "partId":…
2
votes
1 answer

flutter where is iOS Deployment Target ( inside project runner and inside target runner )?

I have a problem with pod install. I found the solution below: https://github.com/flutter/flutter/issues/58200 I found minimumOSVersion but I cannot find iOS Deployment Targets ( inside project runner, target runner ) no one complains about that…
SILENMUS
  • 709
  • 1
  • 10
  • 25
2
votes
2 answers

Can't connect to a remote FTP server via LFTP on a gitlab public runner

I have a FTP server at Ionos.com which works good with Filezilla. However, when i try to connect to this FTP server via LFTP on a gitlab public runner (node:latest image), i keep on receiving errors depending on what i'm doing : Connecting on port…
Ontiques
  • 31
  • 3
2
votes
1 answer

Run Rails Runner from Ruby Script

I have a Ruby script in a subdirectory of a Ruby on Rails application that runs in the background and performs some support tasks. In this script, would like have access to the Rails environment and the value of an application controller…
wojja
  • 175
  • 1
  • 11
2
votes
2 answers

Do a rolling regression only on specific dates

I am trying to do the following rolling regression: stock_return = α + β market_return. My dataset "data" looks as follows: Company Date stock_return market_return Alpha Beta AAPL 01.01.2014 3% 4% … AAPL …
Ben
  • 183
  • 8
2
votes
3 answers

Cron Job Errors help - Rails Runner errors

* * * * * /bin/bash -l -c 'cd /Users/boris/projects/MyApp/ && rails runner "Resque.enqueue(Place)"' Basically I need to do the following: Load Ruby with RVM Navigate to MyApp Dir Run the following line: rails runner "Resque.enqueue(Place) The…
JZ.
  • 21,147
  • 32
  • 115
  • 192
1 2
3
16 17