Skip to content

Commit c899a20

Browse files
committed
Now with all tests
1 parent 3048ce4 commit c899a20

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

.github/workflows/CI.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
with:
4040
version: ${{ matrix.julia-version }}
4141

42-
- name: Set number of threads for the tests
42+
- name: Set number of Julia threads
4343
run: |
4444
echo "JULIA_NUM_THREADS=4" >> "$GITHUB_ENV"
4545

test/runtests.jl

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -19,22 +19,22 @@ includet(normpath("aircraft/c172/test_c172s.jl")); using .TestC172S
1919
includet(normpath("aircraft/c172/test_c172x.jl")); using .TestC172X
2020
includet(normpath("aircraft/c172/test_c172x1.jl")); using .TestC172Xv1
2121

22-
println(Threads.nthreads())
22+
println("Number of threads: ", Threads.nthreads())
2323

2424
test_gui()
2525

2626
test_quaternions()
2727
test_attitude()
2828
test_geodesy()
2929
test_kinematics()
30-
# test_dynamics()
31-
# test_control()
32-
# test_propellers()
33-
# test_piston()
34-
# test_landing_gear()
35-
# test_aircraft_base()
36-
# test_world()
30+
test_dynamics()
31+
test_control()
32+
test_propellers()
33+
test_piston()
34+
test_landing_gear()
35+
test_aircraft_base()
36+
test_world()
3737

38-
# test_c172s()
39-
# test_c172x()
40-
# test_c172x1()
38+
test_c172s()
39+
test_c172x()
40+
test_c172x1()

0 commit comments

Comments
 (0)