Skip to content

Commit fa2dba2

Browse files
committed
Disable testing on Julia nightly, re-enable Appveyor
1 parent 9f731de commit fa2dba2

File tree

3 files changed

+5
-7
lines changed

3 files changed

+5
-7
lines changed

.appveyor.yml_ .appveyor.yml

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# Documentation: https://github.com/JuliaCI/Appveyor.jl
22

33
environment:
4-
JULIA_NUM_THREADS: 4
4+
# JULIA_NUM_THREADS: 4
55
matrix:
66
- julia_version: 1.0
77
- julia_version: 1.1
8-
- julia_version: nightly
8+
# - julia_version: nightly
99

1010
platform:
1111
- x86 # 32-bit
@@ -34,7 +34,6 @@ install:
3434
build_script:
3535
- echo "%JL_BUILD_SCRIPT%"
3636
- C:\julia\bin\julia -e "%JL_BUILD_SCRIPT%"
37-
# - C:\julia\bin\julia -e '@info "Running Julia with $(Base.Threads.nthreads()) threads"'
3837

3938
test_script:
4039
- echo "%JL_TEST_SCRIPT%"

.travis.yml

+1-4
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ os:
99
julia:
1010
- 1.0
1111
- 1.1
12-
- nightly
12+
# - nightly
1313

1414
env:
1515
- JULIA_NUM_THREADS=4
@@ -24,9 +24,6 @@ matrix:
2424
notifications:
2525
email: false
2626

27-
before_script:
28-
- julia -e '@info "Running Julia with $(Base.Threads.nthreads()) threads"'
29-
3027
after_success:
3128
# push coverage results to Codecov
3229
- julia -e 'import Pkg; Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'

test/runtests.jl

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
import Test
44
Test.@testset "Package ParallelProcessingTools" begin
5+
@info "Testing with $(Base.Threads.nthreads()) Julia threads."
6+
57
include("test_threadsafe.jl")
68
include("test_threadlocal.jl")
79
include("test_workpartition.jl")

0 commit comments

Comments
 (0)