diff options
author | John Turner <jturner.usa@gmail.com> | 2025-09-23 21:10:11 -0400 |
---|---|---|
committer | John Turner <jturner.usa@gmail.com> | 2025-09-23 21:10:11 -0400 |
commit | 2aa14b931f1a4fa7f465537b5310217b84615203 (patch) | |
tree | 5f364685a2c66a920f933096734fef98cfe24d34 /meson.build | |
parent | b6c04426d9a7f28e9c440c25a3c2eee53d86cd00 (diff) | |
download | pypaste-2aa14b931f1a4fa7f465537b5310217b84615203.tar.gz |
gate tests behind option
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/meson.build b/meson.build index 2e656b4..13022e0 100644 --- a/meson.build +++ b/meson.build @@ -42,8 +42,10 @@ python = import('python').find_installation( python.install_sources(sources, preserve_path: true) -subdir('tests') - +if get_option('tests').enabled() + subdir('tests') +endif + # Local Variables: # eval: (remove-hook 'before-save-hook 'fmt-current-buffer t) # End: |