Skip to content

Commit

Permalink
cleanup:
Browse files Browse the repository at this point in the history
  • Loading branch information
KadekM committed May 2, 2017
1 parent e20a699 commit 40f2a2c
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 22 deletions.
16 changes: 0 additions & 16 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -51,22 +51,6 @@ val wartRemover = Seq(
While
)
)
// ---- release process ----

import ReleaseTransformations._

releaseProcess in ThisBuild := Seq[ReleaseStep](
checkSnapshotDependencies, // : ReleaseStep
inquireVersions, // : ReleaseStep
//runTest, // : ReleaseStep
setReleaseVersion, // : ReleaseStep
commitReleaseVersion, // : ReleaseStep, performs the initial git checks
tagRelease, // : ReleaseStep
publishArtifacts, // : ReleaseStep, checks whether `publishTo` is properly set up
setNextVersion, // : ReleaseStep
commitNextVersion, // : ReleaseStep
pushChanges // : ReleaseStep, also checks that an upstream branch is properly configured
)

// ---- common settings ----

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class JsoupProxyPickingTest extends ScrawlerTest {
HttpProxy("122.193.14.106", 81)
)

"proxy configuration" ignore {
"proxy configuration" ignore { // todo, reliable proxy source ?
"should be configurable per browser" - {
proxies match {
case fst :: _ =>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ trait ParallelCrawlingSpec extends ScrawlerTest with BrowserAgnostic[Task] {
val bot: ParallelCrawlingCapability[Task, String] = new HttpsLinksInfiniteCrawler(browsers)

"parallel crawling" - {
"printing" ignore { // todo: temporarily
"printing" in {
bot
.parallelCrawl(opencrawling.randomUrl.unsafeRun, maxConnections = 8)
.evalMap(x => Task.delay { info(s"crawled: $x"); x })
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ object opencrawling {
private[this] val random = new Random

val urls: Seq[String] = Seq(
"https://news.ycombinator.com",
"http://www.github.com",
"http://www.wikipedia.org",
"http://www.stackoverflow.com"
//"https://news.ycombinator.com",
//"http://www.github.com",
"http://www.wikipedia.org"
//"http://www.stackoverflow.com"
//"http://reddit.com"
)

Expand Down

0 comments on commit 40f2a2c

Please sign in to comment.