Frame 692: 35 bytes on wire (280 bits), 35 bytes captured (280 bits) on interface 0
Interface id: 0 (\\.\pipe\wireshark_extcap_\\.\USBPcap1_20190528224209)
Encapsulation type: USB packets with USBPcap header (152)
Arrival Time: May 28, 2019 22:42:48.857235000 Środkowoeuropejski czas letni
[Time shift for this packet: 0.000000000 seconds]
Epoch Time: 1559076168.857235000 seconds
[Time delta from previous captured frame: 0.045329000 seconds]
[Time delta from previous displayed frame: 0.000000000 seconds]
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
irb(main):053:0> AlcoholLicense.where('reported_at > ? AND license_category_id=1 AND business_category_id=2', Time.now - 26.months).where(location_id: Location.kazimierz.ids).map{|a| {nazwa: a.busin | |
ess.name, ulica: a.location.address_1, numer: a.location.address_2}} | |
[ | |
{ | |
"nazwa": "POPLAWSKA DOROTA", | |
"ulica": "AUGUSTIAŃSKA", | |
"numer": "4" | |
}, | |
{ |
This file has been truncated, but you can view the full file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"result": { | |
"FAIL": 466, | |
"INFO": 218, | |
"PASS": 1644, | |
"SKIP": 2658, | |
"WARN": 323 | |
}, | |
"sections": [ | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require "pundit/version" | |
require "active_support/concern" | |
require "active_support/core_ext/string/inflections" | |
require "active_support/core_ext/object/blank" | |
require "active_support/core_ext/module/introspection" | |
require "active_support/dependencies/autoload" | |
module Pundit | |
class PolicyFinder | |
attr_reader :object |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
failing_scenarios.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace :failing_cucumber_specs do | |
FAILING_SCENARIOS_FILENAME = 'failing_scenarios.txt' | |
task :record do | |
# run cucumber and record failing scenarios to the file | |
begin | |
Rake::Task['knapsack:cucumber'].invoke("-f rerun --out #{FAILING_SCENARIOS_FILENAME}") | |
rescue SystemExit => e | |
# exit 0, we don't want failed build because of this task | |
puts "#{e.class}: #{e.message}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
test: | |
override: | |
- bundle exec rake failing_cucumber_specs:record: | |
parallel: true | |
- bundle exec rake failing_cucumber_specs:rerun: | |
parallel: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace :failing_cucumber_specs do | |
# we have multiple nodes, so we need different file for each node | |
FAILING_SCENARIOS_FILENAME = "failing_scenarios_#{ENV['CIRCLE_NODE_INDEX']}.txt" | |
task :record do | |
# run cucumber and record failing scenarios to the file | |
begin | |
Rake::Task['knapsack:cucumber'].invoke("-f rerun --out #{FAILING_SCENARIOS_FILENAME}") | |
rescue SystemExit => e | |
# exit 0, we don't want failed build because of this task |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
failing_scenarios_*.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Scenario: xxx # features/xxx.feature:19 | |
PhantomJS has crashed. Please read the crash reporting guide at https://github.com/ariya/phantomjs/wiki/Crash-Reporting and file a bug report at https://github.com/ariya/phantomjs/issues/new with the crash dump file attached: /tmp/1a24bbe0-87e2-2753-3444a3a4-65f405d9.dmp | |
[1.78] Given Logged in User # features/step_definitions/support_steps.rb:9 | |
PhantomJS client died while processing {"name":"visit","args":["http://127.0.0.1:39185/users/sign_in"]} (Capybara::Poltergeist::DeadClient) | |
./features/step_definitions/support_steps.rb:13:in `/^Logged in User$/' | |
features/xxx.feature:20:in `Given Logged in User' |
NewerOlder