Skip to content

Commit 71abd46

Browse files
committed
stuff test
1 parent 1620616 commit 71abd46

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

.github/workflows/aot.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,6 @@ jobs:
4747
version: ${{ matrix.julia-version }}
4848
arch: ${{ matrix.architecture }}
4949
show-versioninfo: true
50-
- name: Install PyPreferences
51-
shell: julia {0}
52-
run: |
53-
using Pkg;
54-
pkg"dev ./PyPreferences.jl";
5550
- run: julia -e 'using Pkg; pkg"add PackageCompiler@v1"'
5651

5752
- run: aot/compile.jl

PyPreferences.jl/test/runtests.jl

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,7 @@ using Test
44
@testset "PyPreferences.jl" begin
55
# Write your tests here.
66
end
7+
8+
if lowercase(get(ENV, "JULIA_PKGEVAL", "false")) != "true"
9+
include("test_venv.jl")
10+
end

test/runtests.jl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ PyPreferences.status()
3131
end
3232
end
3333

34+
include("test_venv.jl")
35+
3436
roundtrip(T, x) = convert(T, PyObject(x))
3537
roundtrip(x) = roundtrip(PyAny, x)
3638
roundtripeq(T, x) = roundtrip(T, x) == x

0 commit comments

Comments
 (0)