Skip to content

Commit

Permalink
Improved handlign of multiple Delphi versions.
Browse files Browse the repository at this point in the history
  • Loading branch information
danieleteti committed Nov 27, 2023
1 parent d68b102 commit b304aed
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ def clean(ctx, folder=None):


@task()
def tests32(ctx, delphi_version):
def tests32(ctx):
"""Builds and execute the unit tests"""
import os

Expand All @@ -323,11 +323,11 @@ def tests32(ctx, delphi_version):

print("\nBuilding Unit Test client")
build_delphi_project(
ctx, testclient, config="CI", delphi_version=delphi_version, platform="Win32"
ctx, testclient, config="CI", platform="Win32"
)
print("\nBuilding Test Server")
build_delphi_project(
ctx, testserver, config="CI", delphi_version=delphi_version, platform="Win32"
ctx, testserver, config="CI", platform="Win32"
)

# import subprocess
Expand Down

0 comments on commit b304aed

Please sign in to comment.