Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@
end
end

context "with a path dependency" do
context "with a path dependency", :slow do
let(:dependency_files) { [pipfile, lockfile, setupfile] }
let(:setupfile) do
Dependabot::DependencyFile.new(
Expand Down Expand Up @@ -419,7 +419,7 @@
)
end

it "updates the lockfile and the requirements.txt" do
it "updates the lockfile and the requirements.txt", :slow do
expect(updated_files.map(&:name)).
to match_array(%w(Pipfile.lock requirements.txt))

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@
end
end

context "with a path dependency" do
context "with a path dependency", :slow do
let(:dependency_files) { [pipfile, lockfile, setupfile] }
let(:setupfile) do
Dependabot::DependencyFile.new(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@
end
end

context "with a dependency file that includes a git dependency" do
context "with a dependency file that includes a git dependency", :slow do
let(:pyproject_fixture_name) { "git_dependency.toml" }
let(:lockfile_fixture_name) { "git_dependency.lock" }
let(:dependency_name) { "pytest" }
Expand Down