-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[SLP-0047] Fix build errors of issue SLI-0046 #47
Conversation
@@ -33,11 +33,8 @@ class IdentificationWalkerTest extends AnyFunSuite with BeforeAndAfter { | |||
final val logger = Logger[IdentificationWalkerTest] | |||
|
|||
// In order to be sure that on each test case we do not have data from previous tests. | |||
before { | |||
logger.debug("Restoring memory symbol table.") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What happened to the logger?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I restored the logging messages in the following commit, my bad.
@@ -48,7 +48,7 @@ class MemorySymbolTableUnitTest extends AnyFunSuite with BeforeAndAfter { | |||
val shape = new ShapeDeclaration("example", 4,1, | |||
new PrefixInvocation("example", 4,2, "this is my shape name", prefix), null) | |||
|
|||
before { | |||
after { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Was any problem with the original before impl?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes, I will document everything later on in the issue, this is still WIP
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
okay thanks!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have updated the comment
Right now the only thing that bothers me is that Travis is making a build just for Scala 2.13.1 and not for both 2.13.1 and 2.12.10. Do you know what could be the problem? |
I would like to check the build with 2.12.10 (where the coverageReport is done) before merging this. |
Yes I've been looking the travis generated logs and it is skiping the 2.12.10 version.. Would like to fix it before merging too. |
I think I got it, the problem is that we are using the "matrix" functionality to run a Python build too. I separated the 2.12.10 and 2.13.1 builds, lets see if it works. |
If it works you can have the rest of the week free >.< (It's friday) |
Nah, the 2.12.10 build is failing. This is going to be a tough one... |
Codecov Report
@@ Coverage Diff @@
## shex-lite-2.0-dev #47 +/- ##
====================================================
Coverage ? 41.55%
====================================================
Files ? 7
Lines ? 219
Branches ? 19
====================================================
Hits ? 91
Misses ? 128
Partials ? 0
Continue to review full report at Codecov.
|
Seems to be working now. |
Work done:
The compiler bridge sources org.scala-sbt:compiler-bridge_2.13:1.1.1:compile could not be retrieved
.Closes #46