Skip to content

Commit

Permalink
Fix Folia tests (#150)
Browse files Browse the repository at this point in the history
  • Loading branch information
turikhay authored Jul 23, 2024
1 parent fced22e commit 2edabae
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tests_e2e/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -303,8 +303,10 @@ def save(data):

if enable_folia:
server_type = "FOLIA"
paper_channel = "experimental"
else:
server_type = "PAPER"
paper_channel = None

logger.info(f"Selected server type: {server_type}")

Expand All @@ -322,6 +324,9 @@ def save(data):
'environment': [
f'VERSION={server_version}',
f'TYPE={server_type}',
*([
f'PAPER_CHANNEL={paper_channel}',
] if paper_channel else []),
],
'ports': [
]
Expand Down

0 comments on commit 2edabae

Please sign in to comment.