Skip to content

Commit

Permalink
Merge pull request #760 from olafurpg/sbt
Browse files Browse the repository at this point in the history
Remove leftovers from sbt plugin
  • Loading branch information
olafurpg authored Jun 23, 2018
2 parents cbadb2b + ea46f43 commit ff7ace7
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 27 deletions.
9 changes: 0 additions & 9 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ Contributing
- `scalafix-core/` data structures and algorithms for scalafix rules
- `scalafix-reflect/` JVM-only utilities to compile and classload custom rules
- `scalafix-cli/` command-line interface
- `scalafix-sbt/` SBT plugin
- `scalafix-tests/` project for running unit and integration tests.
- `readme` documentation page

Expand All @@ -27,14 +26,6 @@ The commands below assume you have a running sbt shell.
> unit/testOnly scalafix.tests.rule.* # Only run tests for rules, using scalafix-testkit.
> unit/testOnly scalafix.tests.core.* # Only run tests for core APIs.
> unit/testOnly scalafix.tests.cli.* # Only run tests for the command line interface.

# SBT plugin
# (recommended) start the sbt shell with a SNAPSHOT scalafix version:
# $ sbt -Dscalafix.version=0.5-SNAPSHOT
> scalafix-sbt/it:test # publishes modules locally and runs scripted (slow).
# Only needed once per changed in core/cli modules.
> scalafix-sbt/scripted # only run scripted tests (still slow, but skips
# publishLocal for core/cli modules)
```

Unit tests for rules are written using scalafix-testkit, read more about
Expand Down
18 changes: 0 additions & 18 deletions project/ScalafixBuild.scala
Original file line number Diff line number Diff line change
Expand Up @@ -179,19 +179,6 @@ object ScalafixBuild extends AutoPlugin with GhpagesKeys {
"clean" ::
"scalafix/publishSigned" ::
"scalafix211/publishSigned" ::
"scalafix-sbt013/publishSigned" ::
"scalafix-sbt/publishSigned" ::
s
},
commands += Command.command("ci-sbt") { s =>
// scripted tests don't work in sbt 1.0 yet because we run Sbt1
"scalafix-sbt/publishLocal" ::
"scalafix-sbt/test" ::
s
},
commands += Command.command("ci-sbt013") { s =>
"scalafix-sbt013/scripted" ::
"scalafix-sbt013/test" ::
s
},
commands += Command.command("ci-fast-212") { s =>
Expand All @@ -202,11 +189,6 @@ object ScalafixBuild extends AutoPlugin with GhpagesKeys {
"scalafix211/test" ::
s
},
commands += Command.command("ci-sbt013-windows") { s =>
"scalafix-sbt013/scripted" ::
testSkipWindows("scalafix-sbt013") ::
s
},
commands += Command.command("ci-fast-212-windows") { s =>
testSkipWindows("scalafix") ::
s
Expand Down

0 comments on commit ff7ace7

Please sign in to comment.