File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -42,9 +42,8 @@ build_script:
4242 - IF EXIST .git\shallow (git fetch --unshallow)
4343 - C:\projects\julia\bin\julia -e "VERSION < v\"0.7.0-DEV\" || (using InteractiveUtils);
4444 versioninfo();
45- if VERSION < v\"0.7.0-DEV.5183\";
46- Pkg.clone(pwd(), \"ModuleInterfaceTools\");
47- else; Pkg.up(); end"
45+ if VERSION < v\"0.7.0-DEV.5183\"; Pkg.clone(pwd(), \"ModuleInterfaceTools\");
46+ else; using Pkg; Pkg.up(); end"
4847
4948test_script :
50- - C:\projects\julia\bin\julia -e "Pkg.test(\"ModuleInterfaceTools\")"
49+ - C:\projects\julia\bin\julia -e "VERSION < v\"0.7.0-DEV\" || (using Pkg); Pkg.test(\"ModuleInterfaceTools\")"
Original file line number Diff line number Diff line change 33
44using ModuleInterfaceTools
55
6- @static V6_COMPAT ? (using Base. Test) : (using Test)
6+ @static V6_COMPAT ? (using Base. Test) : (using Pkg, Test)
77
88# Pick up APITest from the test directory
99push! (LOAD_PATH , @__DIR__ )
You can’t perform that action at this time.
0 commit comments