bevy_persistence_database 0.3.0

A persistence and database integration solution for the Bevy game engine
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
.PHONY: test test-relationships

# Run the full test suite across both relationship backends.
# The default build covers the Bevy-native relationship path; the feature build
# covers the bevy_many_relationships path — unit tests filtered out of the
# second pass since they don't vary by feature flag.
test:
	cargo test
	cargo test --features bevy_many_relationship_edges --test integration_tests

# Run only relationship tests across both backends — fast feedback when working
# on relationship code.
test-relationships:
	cargo test --test integration_tests relationships::
	cargo test --features bevy_many_relationship_edges --test integration_tests relationships::