December 5, 2018
Package Development in Julia 1.0 using the REPL
This is a quick post on package development in Julia 1.0. Let me know if you’re interested in more, and what.
Suppose you’re developing a package - say, MyPackage.jl - whether from scratch, or updating from Julia 0.6. First, and foremost, you need to be able to run and test it. On Julia 1.0, this is one possible way, while using the REPL.
Choose a folder to develop it and create the necessary files
February 21, 2016
Automated testing
We’re gonna learn how to make a test for your Julia code that runs whenever you publish it online. We’re gonna use
GitHub to store the code; Travis CI to run your tests; Coveralls.io to verify which lines of code your test are missing. Alternatively, for a open source alternative, see GitLab, which I don’t know enough yet.
Let’s make a litte code to solve a linear system, paying attention to the problems it may arise, like incorrect dimensions, underdetermined and overdetermined systems, singular matrices, etc.