mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2025-12-12 20:32:15 +00:00
suppressed sbt specific output
This commit is contained in:
parent
e8a80b8034
commit
e838a75365
10
scala/.gitignore
vendored
10
scala/.gitignore
vendored
@ -1,4 +1,5 @@
|
|||||||
/bin/
|
/bin/
|
||||||
|
lib/
|
||||||
|
|
||||||
# OSX Finder
|
# OSX Finder
|
||||||
.DS_Store
|
.DS_Store
|
||||||
@ -8,8 +9,6 @@
|
|||||||
*.iml
|
*.iml
|
||||||
.bsp
|
.bsp
|
||||||
.bloop
|
.bloop
|
||||||
.bsp
|
|
||||||
.bloop
|
|
||||||
|
|
||||||
#vscode
|
#vscode
|
||||||
.vscode
|
.vscode
|
||||||
@ -19,13 +18,6 @@ metals.sbt
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
#vscode
|
|
||||||
.vscode
|
|
||||||
.metals
|
|
||||||
.scala-build
|
|
||||||
project/metals.sbt
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Eclipse
|
# Eclipse
|
||||||
.worksheet
|
.worksheet
|
||||||
|
|||||||
@ -5,10 +5,10 @@ object TexttestFixture {
|
|||||||
System.out.println("OMGHAI!")
|
System.out.println("OMGHAI!")
|
||||||
|
|
||||||
val items = Array[Item](
|
val items = Array[Item](
|
||||||
Item("+5 Dexterity Vest", 10, 20), //
|
Item("+5 Dexterity Vest", 10, 20),
|
||||||
Item("Aged Brie", 2, 0), //
|
Item("Aged Brie", 2, 0),
|
||||||
Item("Elixir of the Mongoose", 5, 7), //
|
Item("Elixir of the Mongoose", 5, 7),
|
||||||
Item("Sulfuras, Hand of Ragnaros", 0, 80), //
|
Item("Sulfuras, Hand of Ragnaros", 0, 80),
|
||||||
Item("Sulfuras, Hand of Ragnaros", -1, 80),
|
Item("Sulfuras, Hand of Ragnaros", -1, 80),
|
||||||
Item("Backstage passes to a TAFKAL80ETC concert", 15, 20),
|
Item("Backstage passes to a TAFKAL80ETC concert", 15, 20),
|
||||||
Item("Backstage passes to a TAFKAL80ETC concert", 10, 49),
|
Item("Backstage passes to a TAFKAL80ETC concert", 10, 49),
|
||||||
|
|||||||
@ -11,4 +11,4 @@ import sys
|
|||||||
|
|
||||||
args = " ".join(sys.argv[1:])
|
args = " ".join(sys.argv[1:])
|
||||||
TEXTTEST_HOME = os.environ.get("TEXTTEST_HOME", os.getcwd())
|
TEXTTEST_HOME = os.environ.get("TEXTTEST_HOME", os.getcwd())
|
||||||
subprocess.run(f"""(cd {TEXTTEST_HOME}/scala/; sbt "Test / runMain com.gildedrose.TexttestFixture {args}") """, shell=True)
|
subprocess.run(f"""(cd {TEXTTEST_HOME}/scala/; sbt -warn "Test / runMain com.gildedrose.TexttestFixture {args}") """, shell=True)
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user