unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
blob 649a9166f11da46d3b1fe5f04b3d9ddf5eda4817 4813 bytes (raw)
name: gnu/packages/patches/elixir-disable-mix-tests.patch 	 # note: path name is non-authoritative(*)

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
 
diff --git a/lib/mix/test/mix/dep_test.exs b/lib/mix/test/mix/dep_test.exs
index fff3351..d6ed1b3 100644
--- a/lib/mix/test/mix/dep_test.exs
+++ b/lib/mix/test/mix/dep_test.exs
@@ -244,6 +244,7 @@ defmodule Mix.DepTest do
     end
   end
 
+  @tag :skip
   test "remote converger" do
     deps = [{:deps_repo, "0.1.0", path: "custom/deps_repo"},
             {:git_repo, "0.2.0", git: MixTest.Case.fixture_path("git_repo")}]
@@ -301,6 +302,7 @@ defmodule Mix.DepTest do
     end
   end
 
+  @tag :skip
   test "remote converger is not invoked if deps diverge" do
     deps = [{:deps_repo, "0.1.0", path: "custom/deps_repo"},
             {:git_repo, "0.2.0", git: MixTest.Case.fixture_path("git_repo"), only: :test}]
diff --git a/lib/mix/test/mix/rebar_test.exs b/lib/mix/test/mix/rebar_test.exs
index d2dd098..12cef15 100644
--- a/lib/mix/test/mix/rebar_test.exs
+++ b/lib/mix/test/mix/rebar_test.exs
@@ -120,6 +120,7 @@ defmodule Mix.RebarTest do
     assert Enum.all?(deps, &(&1.manager == :rebar3))
   end
 
+  @tag :skip
   test "Rebar overrides" do
     Mix.Project.push(RebarOverrideAsDep)
 
@@ -150,6 +151,7 @@ defmodule Mix.RebarTest do
     end
   end
 
+  @tag :skip
   test "get and compile dependencies for Rebar" do
     Mix.Project.push(RebarAsDep)
 
@@ -180,6 +182,7 @@ defmodule Mix.RebarTest do
     end
   end
 
+  @tag :skip
   test "get and compile dependencies for rebar3" do
     Mix.Project.push(Rebar3AsDep)
 
diff --git a/lib/mix/test/mix/shell/io_test.exs b/lib/mix/test/mix/shell/io_test.exs
index 9bfb6b4..d982ef3 100644
--- a/lib/mix/test/mix/shell/io_test.exs
+++ b/lib/mix/test/mix/shell/io_test.exs
@@ -29,6 +29,7 @@ defmodule Mix.Shell.IOTest do
     assert capture_io("", fn -> refute yes?("Ok?") end)
   end
 
+  @tag :skip
   test "runs a given command" do
     assert capture_io("", fn -> assert cmd("echo hello") == 0 end) == "hello\n"
 
diff --git a/lib/mix/test/mix/shell/quiet_test.exs b/lib/mix/test/mix/shell/quiet_test.exs
index 626429b..99fab35 100644
--- a/lib/mix/test/mix/shell/quiet_test.exs
+++ b/lib/mix/test/mix/shell/quiet_test.exs
@@ -29,6 +29,7 @@ defmodule Mix.Shell.QuietTest do
     assert capture_io("", fn -> refute yes?("Ok?") end)
   end
 
+  @tag :skip
   test "runs a given command" do
     assert capture_io("", fn -> assert cmd("echo hello") == 0 end) == ""
 
diff --git a/lib/mix/test/mix/tasks/cmd_test.exs b/lib/mix/test/mix/tasks/cmd_test.exs
index db4bf06..4d441f7 100644
--- a/lib/mix/test/mix/tasks/cmd_test.exs
+++ b/lib/mix/test/mix/tasks/cmd_test.exs
@@ -3,6 +3,7 @@ Code.require_file "../../test_helper.exs", __DIR__
 defmodule Mix.Tasks.CmdTest do
   use MixTest.Case
 
+  @tag :skip
   test "runs the command for each app" do
     in_fixture "umbrella_dep/deps/umbrella", fn ->
       Mix.Project.in_project(:umbrella, ".", fn _ ->
diff --git a/lib/mix/test/mix/tasks/deps.tree_test.exs b/lib/mix/test/mix/tasks/deps.tree_test.exs
index 4f09ff3..c371997 100644
--- a/lib/mix/test/mix/tasks/deps.tree_test.exs
+++ b/lib/mix/test/mix/tasks/deps.tree_test.exs
@@ -29,6 +29,7 @@ defmodule Mix.Tasks.Deps.TreeTest do
     end
   end
 
+  @tag :skip
   test "shows the dependency tree", context do
     Mix.Project.push ConvergedDepsApp
 
@@ -109,6 +110,7 @@ defmodule Mix.Tasks.Deps.TreeTest do
     end
   end
 
+  @tag :skip
   test "shows the dependency tree in DOT graph format", context do
     Mix.Project.push ConvergedDepsApp
 
diff --git a/lib/mix/test/mix/tasks/deps_test.exs b/lib/mix/test/mix/tasks/deps_test.exs
index b061777..cc45cf8 100644
--- a/lib/mix/test/mix/tasks/deps_test.exs
+++ b/lib/mix/test/mix/tasks/deps_test.exs
@@ -409,6 +409,7 @@ defmodule Mix.Tasks.DepsTest do
     end
   end
 
+  @tag :skip
   test "fails on diverged dependencies by requirement" do
     Mix.Project.push ConvergedDepsApp
 
@@ -440,6 +441,7 @@ defmodule Mix.Tasks.DepsTest do
     end
   end
 
+  @tag :skip
   test "fails on diverged dependencies even when optional" do
     Mix.Project.push ConvergedDepsApp
 
@@ -469,6 +471,7 @@ defmodule Mix.Tasks.DepsTest do
     end
   end
 
+  @tag :skip
   test "works with converged dependencies" do
     Mix.Project.push ConvergedDepsApp
 
@@ -491,6 +494,7 @@ defmodule Mix.Tasks.DepsTest do
     purge [GitRepo, GitRepo.Mixfile]
   end
 
+  @tag :skip
   test "works with overridden dependencies" do
     Mix.Project.push OverriddenDepsApp
 
diff --git a/lib/mix/test/mix/umbrella_test.exs b/lib/mix/test/mix/umbrella_test.exs
index 69f9428..406668a 100644
--- a/lib/mix/test/mix/umbrella_test.exs
+++ b/lib/mix/test/mix/umbrella_test.exs
@@ -98,6 +98,7 @@ defmodule Mix.UmbrellaTest do
     end
   end
 
+  @tag :skip
   test "loads umbrella child dependencies in all environments" do
     in_fixture "umbrella_dep/deps/umbrella", fn ->
       Mix.Project.in_project :umbrella, ".", fn _ ->

debug log:

solving 649a916 ...
found 649a916 in https://yhetil.org/guix-devel/578e47d0.i8Ovns6KhzHqzVNC%pjotr.public12@thebird.nl/ ||
	https://yhetil.org/guix-devel/20160720034653.8C5971314BA@mail.thebird.nl/ ||
	https://yhetil.org/guix-devel/579027b7.VHXjhpPxQC3AAmeY%pjotr.public12@email/ ||
	https://yhetil.org/guix-devel/20160722141253.GC2882@jasmine/

applying [1/1] https://yhetil.org/guix-devel/578e47d0.i8Ovns6KhzHqzVNC%pjotr.public12@thebird.nl/
diff --git a/gnu/packages/patches/elixir-disable-mix-tests.patch b/gnu/packages/patches/elixir-disable-mix-tests.patch
new file mode 100644
index 0000000..649a916

1:14: trailing whitespace.
 
1:22: trailing whitespace.
 
1:34: trailing whitespace.
 
1:38: trailing whitespace.
 
1:42: trailing whitespace.
 
Checking patch gnu/packages/patches/elixir-disable-mix-tests.patch...
Applied patch gnu/packages/patches/elixir-disable-mix-tests.patch cleanly.
warning: squelched 21 whitespace errors
warning: 26 lines add whitespace errors.

skipping https://yhetil.org/guix-devel/20160720034653.8C5971314BA@mail.thebird.nl/ for 649a916
skipping https://yhetil.org/guix-devel/579027b7.VHXjhpPxQC3AAmeY%pjotr.public12@email/ for 649a916
skipping https://yhetil.org/guix-devel/20160722141253.GC2882@jasmine/ for 649a916
index at:
100644 649a9166f11da46d3b1fe5f04b3d9ddf5eda4817	gnu/packages/patches/elixir-disable-mix-tests.patch

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).