We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0a54624 commit 67f85d0Copy full SHA for 67f85d0
1 file changed
.travis.yml
@@ -34,6 +34,14 @@ before_script:
34
35
script:
36
- julia --color=yes -e 'VERSION >= v"0.7-" && using Pkg; Pkg.test("IPython"; coverage=true)'
37
+
38
+ # Test that IPython.install_dependency("ipython-pre") works:
39
+ - if [ "$CONDA_JL_VERSION" = 3 ]; then
40
+ julia --color=yes -e '
41
+ using IPython;
42
+ IPython.install_dependency("ipython-pre"; force=true)';
43
+ fi
44
45
after_success:
46
# push coverage results to Coveralls
47
- julia --color=yes -e 'cd(Pkg.dir("IPython")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
0 commit comments